Show
Ignore:
Timestamp:
05/25/04 13:53:48 (9 years ago)
Author:
aprilp
Message:

Fixed some static statements

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/src/conf.c

    r120 r133  
    4141#include "auth.h" 
    4242 
     43static void config_notnull(void *parm, char *parmname); 
     44static int parse_value(char *); 
     45static char *get_string(char *ptr); 
     46 
    4347#define DEFAULT_CONFIGFILE "/etc/wifidog.conf" 
    4448#define DEFAULT_DAEMON 1 
     
    7781} OpCodes; 
    7882 
    79 struct { 
     83static struct { 
    8084        const char *name; 
    8185        OpCodes opcode; 
     
    139143} 
    140144 
    141 OpCodes 
     145static OpCodes 
    142146parse_token(const char *cp, const char *filename, int linenum) 
    143147{ 
     
    260264} 
    261265 
    262 int 
     266static int 
    263267parse_value(char *line) 
    264268{ 
     
    279283} 
    280284 
    281 char * 
     285static char * 
    282286get_string(char *ptr) 
    283287{ 
     
    305309} 
    306310 
    307 void 
     311static void 
    308312config_notnull(void *parm, char *parmname) 
    309313{