summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-08-04 15:24:26 +0200
committerMichael Adam <obnox@samba.org>2009-08-04 23:47:28 +0200
commite6ac4b28cdb1eb7587a60c4e93e386a750c879c0 (patch)
tree0c98224bfd9ade537451fb1c942dd2eefed542d3 /src
parent32c7caf7103ac702cc56c126104144ece0f451e2 (diff)
downloadtinyproxy-e6ac4b28cdb1eb7587a60c4e93e386a750c879c0.tar.gz
tinyproxy-e6ac4b28cdb1eb7587a60c4e93e386a750c879c0.zip
conffile: fix some missing initializer warnings in the directives definition.
Michael
Diffstat (limited to '')
-rw-r--r--src/conffile.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/conffile.c b/src/conffile.c
index f6074d3..a89910c 100644
--- a/src/conffile.c
+++ b/src/conffile.c
@@ -167,9 +167,9 @@ struct
} directives[] =
{
/* comments */
- { BEGIN "#", handle_nop },
+ { BEGIN "#", handle_nop, NULL },
/* blank lines */
- { "^[[:space:]]+$", handle_nop },
+ { "^[[:space:]]+$", handle_nop, NULL },
/* string arguments */
STDCONF ("logfile", STR, handle_logfile),
STDCONF ("pidfile", STR, handle_pidfile),
@@ -218,10 +218,11 @@ struct
#endif
#ifdef UPSTREAM_SUPPORT
/* upstream is rather complicated */
- { BEGIN "(no" WS "upstream)" WS STR END, handle_upstream_no },
+ { BEGIN "(no" WS "upstream)" WS STR END, handle_upstream_no, NULL },
{
BEGIN "(upstream)" WS "(" IP "|" ALNUM ")" ":" INT "(" WS STR ")?" END,
- handle_upstream
+ handle_upstream,
+ NULL
},
#endif
/* loglevel */