summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--readconf.c4
-rw-r--r--servconf.c4
3 files changed, 6 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index bb15a0aef..e577b52bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -85,6 +85,9 @@
85 - stevesk@cvs.openbsd.org 2002/01/03 04:11:08 85 - stevesk@cvs.openbsd.org 2002/01/03 04:11:08
86 [ssh_config] 86 [ssh_config]
87 grammar in comment 87 grammar in comment
88 - stevesk@cvs.openbsd.org 2002/01/04 17:59:17
89 [readconf.c servconf.c]
90 remove #ifdef _PATH_XAUTH/#endif; ok markus@
88 91
89 92
9020020121 9320020121
@@ -7233,4 +7236,4 @@
7233 - Wrote replacements for strlcpy and mkdtemp 7236 - Wrote replacements for strlcpy and mkdtemp
7234 - Released 1.0pre1 7237 - Released 1.0pre1
7235 7238
7236$Id: ChangeLog,v 1.1747 2002/01/22 12:18:32 djm Exp $ 7239$Id: ChangeLog,v 1.1748 2002/01/22 12:18:49 djm Exp $
diff --git a/readconf.c b/readconf.c
index 6db96b978..650a11994 100644
--- a/readconf.c
+++ b/readconf.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: readconf.c,v 1.93 2001/12/19 07:18:56 deraadt Exp $"); 15RCSID("$OpenBSD: readconf.c,v 1.94 2002/01/04 17:59:17 stevesk Exp $");
16 16
17#include "ssh.h" 17#include "ssh.h"
18#include "xmalloc.h" 18#include "xmalloc.h"
@@ -815,10 +815,8 @@ fill_default_options(Options * options)
815 options->forward_agent = 0; 815 options->forward_agent = 0;
816 if (options->forward_x11 == -1) 816 if (options->forward_x11 == -1)
817 options->forward_x11 = 0; 817 options->forward_x11 = 0;
818#ifdef _PATH_XAUTH
819 if (options->xauth_location == NULL) 818 if (options->xauth_location == NULL)
820 options->xauth_location = _PATH_XAUTH; 819 options->xauth_location = _PATH_XAUTH;
821#endif
822 if (options->gateway_ports == -1) 820 if (options->gateway_ports == -1)
823 options->gateway_ports = 0; 821 options->gateway_ports = 0;
824 if (options->use_privileged_port == -1) 822 if (options->use_privileged_port == -1)
diff --git a/servconf.c b/servconf.c
index 76a80499d..e772cd46b 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.95 2001/12/19 07:18:56 deraadt Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.96 2002/01/04 17:59:17 stevesk Exp $");
14 14
15#if defined(KRB4) || defined(KRB5) 15#if defined(KRB4) || defined(KRB5)
16#include <krb.h> 16#include <krb.h>
@@ -154,10 +154,8 @@ fill_default_server_options(ServerOptions *options)
154 options->x11_forwarding = 0; 154 options->x11_forwarding = 0;
155 if (options->x11_display_offset == -1) 155 if (options->x11_display_offset == -1)
156 options->x11_display_offset = 10; 156 options->x11_display_offset = 10;
157#ifdef _PATH_XAUTH
158 if (options->xauth_location == NULL) 157 if (options->xauth_location == NULL)
159 options->xauth_location = _PATH_XAUTH; 158 options->xauth_location = _PATH_XAUTH;
160#endif
161 if (options->strict_modes == -1) 159 if (options->strict_modes == -1)
162 options->strict_modes = 1; 160 options->strict_modes = 1;
163 if (options->keepalives == -1) 161 if (options->keepalives == -1)