gcc -Wformat-security.
* file.c (tprint_open_modes): Likewise.
* process.c (printargv): Likewise.
* signal.c (printsignal): Likewise.
2009-06-01 Dmitry V. Levin <ldv@altlinux.org>
+ * bjm.c (sys_query_module): Fix format warning reported by
+ gcc -Wformat-security.
+ * file.c (tprint_open_modes): Likewise.
+ * process.c (printargv): Likewise.
+ * signal.c (printsignal): Likewise.
+
+ Clean up header checks.
* configure.ac: Reformat AC_CHECK_HEADERS to keep it sorted and
easily updated, and reduce merging errors in the future.
* system.c: Convert all non-standard #ifdef checks for specific
for (idx=0; idx<ret; idx++) {
if (idx!=0)
tprintf(",");
- tprintf(mod);
+ tprintf("%s", mod);
mod+=strlen(mod)+1;
}
free(data);
void
tprint_open_modes(mode_t flags)
{
- tprintf(sprint_open_modes(flags) + sizeof("flags"));
+ tprintf("%s", sprint_open_modes(flags) + sizeof("flags"));
}
static int
cp.p64 = cp.p32;
if (cp.p64 == 0)
break;
- tprintf(sep);
+ tprintf("%s", sep);
printstr(tcp, cp.p64, -1);
addr += personality_wordsize[current_personality];
}
printsignal(nr)
int nr;
{
- tprintf(signame(nr));
+ tprintf("%s", signame(nr));
}
void