summaryrefslogtreecommitdiffstats
path: root/libopkg/conffile.c
diff options
context:
space:
mode:
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-11-15 21:36:28 (EST)
committer graham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-11-15 21:36:28 (EST)
commit4496db0b9de9eb62799ec1d68255c12c1def1758 (patch)
treed3a8f064ebb5a29016515e3ca9e4af2e88a1b7cf /libopkg/conffile.c
parente505036a075a03b90bf93916c5640bc45cdfab5e (diff)
Avoid printing an annoying message by default.
git-svn-id: http://opkg.googlecode.com/svn/trunk@316 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/conffile.c')
-rw-r--r--libopkg/conffile.c2
1 files changed, 1 insertions, 1 deletions
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);
}