From: Lucas De Marchi Date: Mon, 5 Nov 2012 04:07:09 +0000 (-0200) Subject: depmod: add depmod prefix to log messages X-Git-Tag: v11~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96b50d362349d78b3dd452e80221ab6ed0563002;p=thirdparty%2Fkmod.git depmod: add depmod prefix to log messages --- diff --git a/tools/depmod.c b/tools/depmod.c index f2f0b77c..410de3e8 100644 --- a/tools/depmod.c +++ b/tools/depmod.c @@ -170,7 +170,7 @@ static void _log(int prio, const char *fmt, ...) prioname = buf; } - fprintf(stderr, "%s: %s", prioname, msg); + fprintf(stderr, "depmod: %s: %s", prioname, msg); free(msg); if (prio <= LOG_CRIT)