From: graham.gower Date: Mon, 16 Nov 2009 02:36:28 +0000 (+0000) Subject: Avoid printing an annoying message by default. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=4496db0b9de9eb62799ec1d68255c12c1def1758 Avoid printing an annoying message by default. git-svn-id: http://opkg.googlecode.com/svn/trunk@316 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/conffile.c b/libopkg/conffile.c index d74ee60..4bedf73 100644 --- a/libopkg/conffile.c +++ b/libopkg/conffile.c @@ -52,7 +52,7 @@ int conffile_has_been_modified(opkg_conf_t *conf, conffile_t *conffile) md5sum = file_md5sum_alloc(root_filename); if (md5sum && (ret = strcmp(md5sum, conffile->value))) { - opkg_message(conf, OPKG_NOTICE, "%s: conffile %s: \t\nold md5=%s \t\nnew md5=%s\n", __FUNCTION__, + opkg_message(conf, OPKG_INFO, "%s: conffile %s: \t\nold md5=%s \t\nnew md5=%s\n", __FUNCTION__, conffile->name, md5sum, conffile->value); }