summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authordjm <djm>2008-06-15 21:50:24 +0000
committerdjm <djm>2008-06-15 21:50:24 +0000
commit8eb1fce2c3f20b9da672e3a4a81bf62feef1d65b (patch)
tree79fa11bf55d2e5dc61e36b61f0bae7cff177f8ad /sshd.c
parent248a0ddb68e0db2547183f2dad322bd2f3c111ba (diff)
downloadopenssh-8eb1fce2c3f20b9da672e3a4a81bf62feef1d65b.tar.gz
- OpenBSD CVS Sync
- dtucker@cvs.openbsd.org 2008/06/14 15:49:48 [sshd.c] wrap long line at 80 chars
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index f9b87ea1..5b89231f 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshd.c,v 1.360 2008/06/12 20:38:28 dtucker Exp $ */
+/* $OpenBSD: sshd.c,v 1.361 2008/06/14 15:49:48 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1441,7 +1441,8 @@ main(int ac, char **av)
* the parameters we need. If we're not doing an extended test,
* do not silently ignore connection test params.
*/
- if (test_flag >= 2 && (test_user != NULL || test_host != NULL || test_addr != NULL)
+ if (test_flag >= 2 &&
+ (test_user != NULL || test_host != NULL || test_addr != NULL)
&& (test_user == NULL || test_host == NULL || test_addr == NULL))
fatal("user, host and addr are all required when testing "
"Match configs");