summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 11:38:40 +1000
committerDamien Miller <djm@mindrot.org>2006-08-05 11:38:40 +1000
commit4dec5d75daab22c31f6f67d9e83594076ae3eda7 (patch)
tree5960da50972639c8643c766fb9812ac93b3cc054 /servconf.c
parenta7a73ee35d030c817b3eea5c6c3a75c765ca8e69 (diff)
- stevesk@cvs.openbsd.org 2006/08/01 23:36:12
[authfile.c channels.c progressmeter.c scard.c servconf.c ssh.c] clean extra spaces
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/servconf.c b/servconf.c
index 4edc80efe..b1fc45c50 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: servconf.c,v 1.162 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: servconf.c,v 1.163 2006/08/01 23:36:12 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
@@ -961,7 +961,7 @@ parse_flag:
961 case sDenyUsers: 961 case sDenyUsers:
962 while ((arg = strdelim(&cp)) && *arg != '\0') { 962 while ((arg = strdelim(&cp)) && *arg != '\0') {
963 if (options->num_deny_users >= MAX_DENY_USERS) 963 if (options->num_deny_users >= MAX_DENY_USERS)
964 fatal( "%s line %d: too many deny users.", 964 fatal("%s line %d: too many deny users.",
965 filename, linenum); 965 filename, linenum);
966 options->deny_users[options->num_deny_users++] = 966 options->deny_users[options->num_deny_users++] =
967 xstrdup(arg); 967 xstrdup(arg);
@@ -1096,7 +1096,7 @@ parse_flag:
1096 */ 1096 */
1097 case sAuthorizedKeysFile: 1097 case sAuthorizedKeysFile:
1098 case sAuthorizedKeysFile2: 1098 case sAuthorizedKeysFile2:
1099 charptr = (opcode == sAuthorizedKeysFile ) ? 1099 charptr = (opcode == sAuthorizedKeysFile) ?
1100 &options->authorized_keys_file : 1100 &options->authorized_keys_file :
1101 &options->authorized_keys_file2; 1101 &options->authorized_keys_file2;
1102 goto parse_filename; 1102 goto parse_filename;