summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/servconf.c b/servconf.c
index 9274c7e6c..bd5588609 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.92 2001/11/17 19:14:34 stevesk Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.93 2001/12/05 10:06:12 deraadt Exp $");
14 14
15#if defined(KRB4) || defined(KRB5) 15#if defined(KRB4) || defined(KRB5)
16#include <krb.h> 16#include <krb.h>
@@ -792,7 +792,7 @@ parse_flag:
792 break; 792 break;
793 793
794 case sSubsystem: 794 case sSubsystem:
795 if(options->num_subsystems >= MAX_SUBSYSTEMS) { 795 if (options->num_subsystems >= MAX_SUBSYSTEMS) {
796 fatal("%s line %d: too many subsystems defined.", 796 fatal("%s line %d: too many subsystems defined.",
797 filename, linenum); 797 filename, linenum);
798 } 798 }
@@ -801,7 +801,7 @@ parse_flag:
801 fatal("%s line %d: Missing subsystem name.", 801 fatal("%s line %d: Missing subsystem name.",
802 filename, linenum); 802 filename, linenum);
803 for (i = 0; i < options->num_subsystems; i++) 803 for (i = 0; i < options->num_subsystems; i++)
804 if(strcmp(arg, options->subsystem_name[i]) == 0) 804 if (strcmp(arg, options->subsystem_name[i]) == 0)
805 fatal("%s line %d: Subsystem '%s' already defined.", 805 fatal("%s line %d: Subsystem '%s' already defined.",
806 filename, linenum, arg); 806 filename, linenum, arg);
807 options->subsystem_name[options->num_subsystems] = xstrdup(arg); 807 options->subsystem_name[options->num_subsystems] = xstrdup(arg);
@@ -862,7 +862,7 @@ parse_flag:
862 case sDeprecated: 862 case sDeprecated:
863 log("%s line %d: Deprecated option %s", 863 log("%s line %d: Deprecated option %s",
864 filename, linenum, arg); 864 filename, linenum, arg);
865 while(arg) 865 while (arg)
866 arg = strdelim(&cp); 866 arg = strdelim(&cp);
867 break; 867 break;
868 868