diff options
Diffstat (limited to 'networking/udhcp/files.h')
-rw-r--r-- | networking/udhcp/files.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/udhcp/files.h b/networking/udhcp/files.h index 1f2638fe9..279738adf 100644 --- a/networking/udhcp/files.h +++ b/networking/udhcp/files.h | |||
@@ -3,15 +3,15 @@ | |||
3 | #define _FILES_H | 3 | #define _FILES_H |
4 | 4 | ||
5 | struct config_keyword { | 5 | struct config_keyword { |
6 | char keyword[14]; | 6 | const char *keyword; |
7 | int (*handler)(char *line, void *var); | 7 | int (* const handler)(const char *line, void *var); |
8 | void *var; | 8 | void *var; |
9 | char def[30]; | 9 | const char *def; |
10 | }; | 10 | }; |
11 | 11 | ||
12 | 12 | ||
13 | int read_config(char *file); | 13 | int read_config(const char *file); |
14 | void write_leases(void); | 14 | void write_leases(void); |
15 | void read_leases(char *file); | 15 | void read_leases(const char *file); |
16 | 16 | ||
17 | #endif | 17 | #endif |