From: Robert Spalek Date: Sat, 22 Apr 2006 13:49:33 +0000 (+0200) Subject: conf: comment out parsers before I get rid of the module whatsoever X-Git-Tag: holmes-import~645^2~11^2~81 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=de82d9329344155db8f6824bf56bcfcda78aac91;p=libucw.git conf: comment out parsers before I get rid of the module whatsoever The parsers collide with conf2.c and I want to be able to have both modules in the library before I convert all programs. --- diff --git a/lib/conf.c b/lib/conf.c index 30608790..50c3511a 100644 --- a/lib/conf.c +++ b/lib/conf.c @@ -122,6 +122,7 @@ static const struct unit units[] = { { 0, 0, 0 } }; +#if 0 static const struct unit *cf_lookup_unit(byte *value, byte *end, char **msg) { if (end && *end) { @@ -256,6 +257,7 @@ cf_parse_ip(byte **p, u32 *varp) error: return "Invalid IP address"; } +#endif byte *cf_set_item(byte *sect, byte *name, byte *value) { diff --git a/lib/conf.h b/lib/conf.h index 7b86dc24..808e8a12 100644 --- a/lib/conf.h +++ b/lib/conf.h @@ -61,6 +61,7 @@ void cf_read(byte *filename); * Number parsing functions which could be useful in CT_FUNCTION callbacks. */ +#if 0 byte *cf_parse_int(byte *value, uns *varp); byte *cf_parse_u64(byte *value, u64 *varp); byte *cf_parse_double(byte *value, double *varp); @@ -70,6 +71,7 @@ byte *cf_parse_double(byte *value, double *varp); */ byte *cf_parse_ip(byte **value, u32 *varp); +#endif /* * When using cf_getopt, you must prefix your own short/long options by the