]> andersk Git - openssh.git/blobdiff - servconf.c
- deraadt@cvs.openbsd.org 2001/12/05 10:06:12
[openssh.git] / servconf.c
index 9274c7e6c9636eab1daadcafc888525411d53aeb..bd558860979c5fc51a5a439acd9d2ffd0e462eb5 100644 (file)
@@ -10,7 +10,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: servconf.c,v 1.92 2001/11/17 19:14:34 stevesk Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.93 2001/12/05 10:06:12 deraadt Exp $");
 
 #if defined(KRB4) || defined(KRB5)
 #include <krb.h>
@@ -792,7 +792,7 @@ parse_flag:
                        break;
 
                case sSubsystem:
-                       if(options->num_subsystems >= MAX_SUBSYSTEMS) {
+                       if (options->num_subsystems >= MAX_SUBSYSTEMS) {
                                fatal("%s line %d: too many subsystems defined.",
                                      filename, linenum);
                        }
@@ -801,7 +801,7 @@ parse_flag:
                                fatal("%s line %d: Missing subsystem name.",
                                      filename, linenum);
                        for (i = 0; i < options->num_subsystems; i++)
-                               if(strcmp(arg, options->subsystem_name[i]) == 0)
+                               if (strcmp(arg, options->subsystem_name[i]) == 0)
                                        fatal("%s line %d: Subsystem '%s' already defined.",
                                              filename, linenum, arg);
                        options->subsystem_name[options->num_subsystems] = xstrdup(arg);
@@ -862,7 +862,7 @@ parse_flag:
                case sDeprecated:
                        log("%s line %d: Deprecated option %s",
                            filename, linenum, arg);
-                       while(arg)
+                       while (arg)
                            arg = strdelim(&cp);
                        break;
 
This page took 0.034659 seconds and 4 git commands to generate.