diff options
author | Damien Miller <djm@mindrot.org> | 2002-01-22 13:18:49 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2002-01-22 13:18:49 +0100 |
commit | f51b0e1a3017bbd5ea06358e6e539bd71bfa65c8 (patch) | |
tree | 1cc0674d90e8352ddb3bb6cce4f7c0b186d181ac /servconf.c | |
parent | - stevesk@cvs.openbsd.org 2002/01/03 04:11:08 (diff) | |
download | openssh-f51b0e1a3017bbd5ea06358e6e539bd71bfa65c8.tar.xz openssh-f51b0e1a3017bbd5ea06358e6e539bd71bfa65c8.zip |
- stevesk@cvs.openbsd.org 2002/01/04 17:59:17
[readconf.c servconf.c]
remove #ifdef _PATH_XAUTH/#endif; ok markus@
Diffstat (limited to '')
-rw-r--r-- | servconf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/servconf.c b/servconf.c index 76a80499d..e772cd46b 100644 --- a/servconf.c +++ b/servconf.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.95 2001/12/19 07:18:56 deraadt Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.96 2002/01/04 17:59:17 stevesk Exp $"); #if defined(KRB4) || defined(KRB5) #include <krb.h> @@ -154,10 +154,8 @@ fill_default_server_options(ServerOptions *options) options->x11_forwarding = 0; if (options->x11_display_offset == -1) options->x11_display_offset = 10; -#ifdef _PATH_XAUTH if (options->xauth_location == NULL) options->xauth_location = _PATH_XAUTH; -#endif if (options->strict_modes == -1) options->strict_modes = 1; if (options->keepalives == -1) |