diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-23 15:50:42 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-23 15:50:42 +0200 |
commit | e93ebb79dbb0d6715a297be2ddbf721ef2fda2bb (patch) | |
tree | 3b72e8b362a07609b17753d3b80ee4bb487b03e1 /grammar | |
parent | bd9c5d6648be43495181c96ea309ef3309b8e694 (diff) | |
download | rsyslog-e93ebb79dbb0d6715a297be2ddbf721ef2fda2bb.tar.gz rsyslog-e93ebb79dbb0d6715a297be2ddbf721ef2fda2bb.tar.bz2 rsyslog-e93ebb79dbb0d6715a297be2ddbf721ef2fda2bb.zip |
refactor: remove now no-longer needed functions
Diffstat (limited to 'grammar')
-rw-r--r-- | grammar/parserif.h | 1 | ||||
-rw-r--r-- | grammar/testdriver.c | 9 |
2 files changed, 0 insertions, 10 deletions
diff --git a/grammar/parserif.h b/grammar/parserif.h index aa271ec4..6c2c1365 100644 --- a/grammar/parserif.h +++ b/grammar/parserif.h @@ -19,5 +19,4 @@ void cnfDoScript(struct cnfstmt *script); void cnfDoCfsysline(char *ln); void cnfDoBSDTag(char *ln); void cnfDoBSDHost(char *ln); -es_str_t *cnfGetVar(char *name, void *usrptr); #endif diff --git a/grammar/testdriver.c b/grammar/testdriver.c index b29626d4..58d204a3 100644 --- a/grammar/testdriver.c +++ b/grammar/testdriver.c @@ -87,15 +87,6 @@ void cnfDoBSDHost(char *ln) dbgprintf("global:BSD host: %s\n", ln); } -es_str_t* -cnfGetVar(char __attribute__((unused)) *name, - void __attribute__((unused)) *usrptr) -{ - es_str_t *estr; - estr = es_newStrFromCStr("", 1); - return estr; -} - int main(int argc, char *argv[]) { |