]> andersk Git - openssh.git/blobdiff - servconf.c
- (bal) OpenBSD Sync
[openssh.git] / servconf.c
index 6604e3d23498b3f9446cd2189a1ef1a9b60b71b7..fb42d74ef165f1612ccf9ba5f8e2a61a52afe157 100644 (file)
@@ -10,7 +10,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: servconf.c,v 1.56 2001/01/07 11:28:06 markus Exp $");
+RCSID("$OpenBSD: servconf.c,v 1.57 2001/01/08 22:29:05 markus Exp $");
 
 #include "ssh.h"
 #include "servconf.h"
@@ -78,6 +78,7 @@ initialize_server_options(ServerOptions *options)
        options->max_startups_begin = -1;
        options->max_startups_rate = -1;
        options->max_startups = -1;
+       options->banner = NULL;
 }
 
 void
@@ -198,6 +199,7 @@ typedef enum {
        sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups,
        sIgnoreUserKnownHosts, sCiphers, sProtocol, sPidFile,
        sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, sMaxStartups,
+       sBanner
 } ServerOpCodes;
 
 /* Textual representation of the tokens. */
@@ -257,6 +259,7 @@ static struct {
        { "gatewayports", sGatewayPorts },
        { "subsystem", sSubsystem },
        { "maxstartups", sMaxStartups },
+       { "banner", sBanner },
        { NULL, 0 }
 };
 
@@ -697,6 +700,10 @@ parse_flag:
                        intptr = &options->max_startups;
                        goto parse_int;
 
+               case sBanner:
+                       charptr = &options->banner;
+                       goto parse_filename;
+                       
                default:
                        fprintf(stderr, "%s line %d: Missing handler for opcode %s (%d)\n",
                                filename, linenum, arg, opcode);
This page took 0.251347 seconds and 4 git commands to generate.