diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-08 15:25:41 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-06-08 15:25:41 +0000 |
commit | a58400f7d96462e1600047ac1eb72aebcebd145a (patch) | |
tree | 736fff5ea052e041fac61f702f405a6bcfca5e5d /usr.bin/ssh/servconf.c | |
parent | cd750a4e4d7c646f80fa6cf0bbc56cad0bc603af (diff) |
move the path for xauth to pathnames.h
Diffstat (limited to 'usr.bin/ssh/servconf.c')
-rw-r--r-- | usr.bin/ssh/servconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 8033b0d19e2..953d6d51a18 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.82 2001/05/20 17:20:35 markus Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.83 2001/06/08 15:25:40 markus Exp $"); #ifdef KRB4 #include <krb.h> @@ -145,10 +145,10 @@ fill_default_server_options(ServerOptions *options) options->x11_forwarding = 0; if (options->x11_display_offset == -1) options->x11_display_offset = 10; -#ifdef XAUTH_PATH +#ifdef _PATH_XAUTH if (options->xauth_location == NULL) - options->xauth_location = XAUTH_PATH; -#endif /* XAUTH_PATH */ + options->xauth_location = _PATH_XAUTH; +#endif if (options->strict_modes == -1) options->strict_modes = 1; if (options->keepalives == -1) |