Changeset - 4186f3b04f1c
[Not reviewed]
default
0 2 0
Nathan Brink (binki) - 16 years ago 2009-06-29 22:34:43
ohnobinki@ohnopublishing.net
attempted to make the config's include function global
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/client/libdistren_config.c
Show inline comments
 
@@ -34,7 +34,6 @@ int _distren_getoptions(distren_t handle
 
  cfg_opt_t cfg_opts[] =
 
    {
 
      CFG_STR("server", NULL, 0),
 
      CFG_FUNC("include", &cfg_include), /*< @todo this should be added by the lidistrencommon.so rather then individually */
 
      CFG_END()
 
    };
 
  
src/common/options.c
Show inline comments
 
@@ -101,6 +101,8 @@ int options_init(int argc, char *argv[],
 
      CFG_SEC(myname,
 
	      myopts,
 
	      0),
 
      CFG_FUNC("include",
 
	       &cfg_include),
 
      CFG_END()
 
    };
 

	
0 comments (0 inline, 0 general)