diff options
author | Damien Miller <djm@mindrot.org> | 2008-06-15 23:50:24 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2008-06-15 23:50:24 +0200 |
commit | 2a6284782de821a5c741d6bcd4f05cf650df34c5 (patch) | |
tree | 9be43a52de948e596972284f401649f3dc7ee372 /sshd.c | |
parent | - (dtucker) [configure.ac] Enable -fno-builtin-memset when using gcc. (diff) | |
download | openssh-2a6284782de821a5c741d6bcd4f05cf650df34c5.tar.xz openssh-2a6284782de821a5c741d6bcd4f05cf650df34c5.zip |
- 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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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"); |