From: Karel Zak Date: Fri, 12 Jan 2018 12:46:49 +0000 (+0100) Subject: include/debug: improve debug message X-Git-Tag: v2.32-rc1~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bd0c1ae18b1c9864b55c0362b737383e70f80c3;p=thirdparty%2Futil-linux.git include/debug: improve debug message Signed-off-by: Karel Zak --- diff --git a/include/debug.h b/include/debug.h index 6d4ecd92b0..ff51e04d9d 100644 --- a/include/debug.h +++ b/include/debug.h @@ -97,7 +97,7 @@ struct ul_debug_maskname { if (lib ## _debug_mask) { \ if (getuid() != geteuid() || getgid() != getegid()) { \ lib ## _debug_mask |= __UL_DEBUG_FL_NOADDR; \ - fprintf(stderr, "%d: %s: SUID executable: pointer addresses suppressed.\n", getpid(), # lib); \ + fprintf(stderr, "%d: %s: don't print memory addresses (SUID executable).\n", getpid(), # lib); \ } \ } \ lib ## _debug_mask |= pref ## INIT; \