=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/servconf.c,v retrieving revision 1.92 retrieving revision 1.93 diff -u -r1.92 -r1.93 --- src/usr.bin/ssh/servconf.c 2001/11/17 19:14:34 1.92 +++ src/usr.bin/ssh/servconf.c 2001/12/05 10:06:12 1.93 @@ -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 @@ -769,7 +769,7 @@ 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); } @@ -778,7 +778,7 @@ 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); @@ -839,7 +839,7 @@ case sDeprecated: log("%s line %d: Deprecated option %s", filename, linenum, arg); - while(arg) + while (arg) arg = strdelim(&cp); break;