diff options
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: session.c,v 1.271 2014/03/03 22:22:30 djm Exp $ */ | 1 | /* $OpenBSD: session.c,v 1.272 2014/07/03 03:34:09 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
4 | * All rights reserved | 4 | * All rights reserved |
@@ -49,6 +49,7 @@ | |||
49 | #include <errno.h> | 49 | #include <errno.h> |
50 | #include <fcntl.h> | 50 | #include <fcntl.h> |
51 | #include <grp.h> | 51 | #include <grp.h> |
52 | #include <netdb.h> | ||
52 | #ifdef HAVE_PATHS_H | 53 | #ifdef HAVE_PATHS_H |
53 | #include <paths.h> | 54 | #include <paths.h> |
54 | #endif | 55 | #endif |
@@ -2653,7 +2654,7 @@ session_setup_x11fwd(Session *s) | |||
2653 | { | 2654 | { |
2654 | struct stat st; | 2655 | struct stat st; |
2655 | char display[512], auth_display[512]; | 2656 | char display[512], auth_display[512]; |
2656 | char hostname[MAXHOSTNAMELEN]; | 2657 | char hostname[NI_MAXHOST]; |
2657 | u_int i; | 2658 | u_int i; |
2658 | 2659 | ||
2659 | if (no_x11_forwarding_flag) { | 2660 | if (no_x11_forwarding_flag) { |