diff options
author | Martin Mares <mj@ucw.cz> | 1998-12-06 23:10:28 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-12-06 23:10:28 +0000 |
commit | cc12cf05c789ef85d72cf19e9b52f0c4982542f7 (patch) | |
tree | 2e0823e050ba57446c4398862ed905dc55b21e6f /conf/conf.h | |
parent | a1bf6440b5c27f7fb829eb25f6ac1c2629eb72eb (diff) |
cf_error() now accepts any format strings instead of just an error
message. Also added extra kludge to get rid of collisions of REJECT
symbols.
Diffstat (limited to 'conf/conf.h')
-rw-r--r-- | conf/conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/conf.h b/conf/conf.h index 974815a8..1e80628e 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -40,7 +40,7 @@ struct symbol { void cf_lex_init_tables(void); int cf_lex(void); void cf_lex_init(int flag); -void cf_error(char *msg) NORET; +void cf_error(char *msg, ...) NORET; void cf_allocate(void); struct symbol *cf_default_name(char *prefix); |