]> mj.ucw.cz Git - libucw.git/commitdiff
conf: comment out parsers before I get rid of the module whatsoever
authorRobert Spalek <robert@ucw.cz>
Sat, 22 Apr 2006 13:49:33 +0000 (15:49 +0200)
committerRobert Spalek <robert@ucw.cz>
Sat, 22 Apr 2006 13:49:33 +0000 (15:49 +0200)
The parsers collide with conf2.c and I want to be able to have both modules
in the library before I convert all programs.

lib/conf.c
lib/conf.h

index 30608790b1ddb2eb158a3b91371b48f5d5df6750..50c3511a293d5a83ffd2f8a20c82c692426609dd 100644 (file)
@@ -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)
 {
index 7b86dc24f4c7a93e4a0e775de68ce4a0a2047828..808e8a122b4771a912c28e5dfcf0320129e0f116 100644 (file)
@@ -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