Changeset 133 for trunk/wifidog/src/conf.c
- Timestamp:
- 05/25/04 13:53:48 (9 years ago)
- Files:
-
- 1 modified
-
trunk/wifidog/src/conf.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/src/conf.c
r120 r133 41 41 #include "auth.h" 42 42 43 static void config_notnull(void *parm, char *parmname); 44 static int parse_value(char *); 45 static char *get_string(char *ptr); 46 43 47 #define DEFAULT_CONFIGFILE "/etc/wifidog.conf" 44 48 #define DEFAULT_DAEMON 1 … … 77 81 } OpCodes; 78 82 79 st ruct {83 static struct { 80 84 const char *name; 81 85 OpCodes opcode; … … 139 143 } 140 144 141 OpCodes145 static OpCodes 142 146 parse_token(const char *cp, const char *filename, int linenum) 143 147 { … … 260 264 } 261 265 262 int266 static int 263 267 parse_value(char *line) 264 268 { … … 279 283 } 280 284 281 char *285 static char * 282 286 get_string(char *ptr) 283 287 { … … 305 309 } 306 310 307 void311 static void 308 312 config_notnull(void *parm, char *parmname) 309 313 {
