X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fparser-conf.c;h=5f2b9787303d3102033662f08cf2477c23a78b60;hp=3154a463c6908a5ea4b3e05a15b10c3f5bc468a4;hb=7946d9b12cec7b49334fc0db6bc23087f2cea8ad;hpb=a5db3ced87f5f24500f785b70af8b8630bc1c077;ds=sidebyside diff --git a/discover/parser-conf.c b/discover/parser-conf.c index 3154a46..5f2b978 100644 --- a/discover/parser-conf.c +++ b/discover/parser-conf.c @@ -16,7 +16,9 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#define _GNU_SOURCE +#if defined(HAVE_CONFIG_H) +#include "config.h" +#endif #include #include @@ -181,7 +183,7 @@ int conf_set_global_option(struct conf_context *conf, const char *name, if (streq(name, conf->global_options[i].name)) { conf->global_options[i].value = talloc_strdup(conf, value); - pb_log("%s: %s = '%s'\n", __func__, name, value); + pb_debug("%s: %s = '%s'\n", __func__, name, value); return 1; } }