summaryrefslogtreecommitdiffstats
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-08-05 22:18:16 +0200
committerDamien Miller <djm@mindrot.org>2011-08-05 22:18:16 +0200
commit765f8c4effc6afdb4fa26daf1f72c3b660abb220 (patch)
tree8174b48cd439b7b1b4baa2435157cf6764afc07f /ssh.c
parent - djm@cvs.openbsd.org 2011/08/02 23:13:01 (diff)
downloadopenssh-765f8c4effc6afdb4fa26daf1f72c3b660abb220.tar.xz
openssh-765f8c4effc6afdb4fa26daf1f72c3b660abb220.zip
- djm@cvs.openbsd.org 2011/08/02 23:15:03
[ssh.c] typo in comment
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index 97eb9c0d4..c717dcf1d 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.363 2011/06/22 22:08:42 djm Exp $ */
+/* $OpenBSD: ssh.c,v 1.364 2011/08/02 23:15:03 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -706,7 +706,7 @@ main(int ac, char **av)
if (r > 0 && (size_t)r < sizeof(buf))
(void)read_config_file(buf, host, &options, 1);
- /* Read systemwide configuration file after use config. */
+ /* Read systemwide configuration file after user config. */
(void)read_config_file(_PATH_HOST_CONFIG_FILE, host,
&options, 0);
}