summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-10-03 17:22:29 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-10-03 17:22:29 +0000
commit83f07d19544b3acc2fb4d3b2b8640c5e5c7ae9d4 (patch)
tree9cd9a07037c8984b6e73d6d47307056670c48662 /ssh.c
parent1af4d3bb709453b0b206106adaba7c94548fa6f2 (diff)
- markus@cvs.openbsd.org 2001/09/28 15:46:29
[ssh.c] bug: read user config first; report kaukasoi@elektroni.ee.tut.fi
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index 1130c8a0e..47b581018 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.144 2001/09/24 03:38:58 stevesk Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.145 2001/09/28 15:46:29 markus Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -626,10 +626,10 @@ again:
626 } else { 626 } else {
627 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, 627 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir,
628 _PATH_SSH_USER_CONFFILE); 628 _PATH_SSH_USER_CONFFILE);
629 (void)read_config_file(buf, host, &options);
629 630
630 /* Read systemwide configuration file. */ 631 /* Read systemwide configuration file after use config. */
631 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options); 632 (void)read_config_file(_PATH_HOST_CONFIG_FILE, host, &options);
632 (void)read_config_file(buf, host, &options);
633 } 633 }
634 634
635 /* Fill configuration defaults. */ 635 /* Fill configuration defaults. */