diff --git a/src/common/options.c b/src/common/options.c --- a/src/common/options.c +++ b/src/common/options.c @@ -27,7 +27,7 @@ int execlisten() /* execlp("ssh", somethingness ) 0); */ - + return 0; } int genericfunc() @@ -53,9 +53,10 @@ int genericfunc() return 1; /* End Conf File Parser */ -printf("Conf File Test", cfg_getstr(cfg, "test")); + printf("Conf File Test: %s\n", cfg_getstr(cfg, "test")); cfg_free(cfg); + return 0; }