diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | defines.h | 6 | ||||
-rw-r--r-- | pathnames.h | 6 |
3 files changed, 10 insertions, 5 deletions
@@ -13,6 +13,7 @@ | |||
13 | - (stevesk) for HP-UX 11.X use X/Open socket interface; | 13 | - (stevesk) for HP-UX 11.X use X/Open socket interface; |
14 | pulls in modern socket prototypes and eliminates a number of compiler | 14 | pulls in modern socket prototypes and eliminates a number of compiler |
15 | warnings. see xopen_networking(7). | 15 | warnings. see xopen_networking(7). |
16 | - (stevesk) fix x11 forwarding from _PATH_XAUTH change | ||
16 | 17 | ||
17 | 20010625 | 18 | 20010625 |
18 | - OpenBSD CVS Sync | 19 | - OpenBSD CVS Sync |
@@ -5807,4 +5808,4 @@ | |||
5807 | - Wrote replacements for strlcpy and mkdtemp | 5808 | - Wrote replacements for strlcpy and mkdtemp |
5808 | - Released 1.0pre1 | 5809 | - Released 1.0pre1 |
5809 | 5810 | ||
5810 | $Id: ChangeLog,v 1.1332 2001/06/27 16:32:24 stevesk Exp $ | 5811 | $Id: ChangeLog,v 1.1333 2001/06/28 00:13:48 stevesk Exp $ |
@@ -1,7 +1,7 @@ | |||
1 | #ifndef _DEFINES_H | 1 | #ifndef _DEFINES_H |
2 | #define _DEFINES_H | 2 | #define _DEFINES_H |
3 | 3 | ||
4 | /* $Id: defines.h,v 1.66 2001/06/10 17:35:46 mouring Exp $ */ | 4 | /* $Id: defines.h,v 1.67 2001/06/28 00:13:48 stevesk Exp $ */ |
5 | 5 | ||
6 | /* Some platforms need this for the _r() functions */ | 6 | /* Some platforms need this for the _r() functions */ |
7 | #if !defined(_REENTRANT) && !defined(SNI) | 7 | #if !defined(_REENTRANT) && !defined(SNI) |
@@ -335,8 +335,8 @@ struct winsize { | |||
335 | #endif | 335 | #endif |
336 | 336 | ||
337 | /* Define this to be the path of the xauth program. */ | 337 | /* Define this to be the path of the xauth program. */ |
338 | #ifndef XAUTH_PATH | 338 | #ifdef XAUTH_PATH |
339 | #define XAUTH_PATH "/usr/X11R6/bin/xauth" | 339 | #define _PATH_XAUTH XAUTH_PATH |
340 | #endif /* XAUTH_PATH */ | 340 | #endif /* XAUTH_PATH */ |
341 | 341 | ||
342 | #ifndef _PATH_TTY | 342 | #ifndef _PATH_TTY |
diff --git a/pathnames.h b/pathnames.h index 54c2c1319..0470a2159 100644 --- a/pathnames.h +++ b/pathnames.h | |||
@@ -118,6 +118,11 @@ | |||
118 | #define _PATH_SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" | 118 | #define _PATH_SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" |
119 | #endif | 119 | #endif |
120 | 120 | ||
121 | /* xauth for X11 forwarding */ | ||
122 | #ifndef _PATH_XAUTH | ||
123 | #define _PATH_XAUTH "/usr/X11R6/bin/xauth" | ||
124 | #endif | ||
125 | |||
121 | /* for scp */ | 126 | /* for scp */ |
122 | #ifndef _PATH_CP | 127 | #ifndef _PATH_CP |
123 | #define _PATH_CP "cp" | 128 | #define _PATH_CP "cp" |
@@ -154,4 +159,3 @@ | |||
154 | #ifndef SSH_PRNG_COMMAND_FILE | 159 | #ifndef SSH_PRNG_COMMAND_FILE |
155 | # define SSH_PRNG_COMMAND_FILE ETCDIR "/ssh_prng_cmds" | 160 | # define SSH_PRNG_COMMAND_FILE ETCDIR "/ssh_prng_cmds" |
156 | #endif /* SSH_PRNG_COMMAND_FILE */ | 161 | #endif /* SSH_PRNG_COMMAND_FILE */ |
157 | |||