On Tue, Jul 17, 2007 at 10:49:14PM -0600, LaMont Jones wrote: > >From 654dc5b2e426461770a40f801409223bb566fcd4 Mon Sep 17 00:00:00 2001 > From: LaMont Jones <lamont@xxxxxxxxxxxx> > Date: Tue, 17 Jul 2007 22:43:15 -0600 > Subject: [PATCH] use snprintf instead of sprintf in logger.c Please, add "Signed-off-by" next time (hint: "git commit -s"). http://www.zip.com.au/~akpm/linux/patches/stuff/tpp.txt > - sprintf (pid, "[%d]", getpid()); > + snprintf (pid, sizeof(pid)-1, "[%d]", getpid()); > - sprintf(buf, "<%d>%.15s %.200s%s: %.400s", > + snprintf(buf, sizeof(buf)-1, "<%d>%.15s %.200s%s: %.400s", Applied, but without "-1". > From: LaMont Jones <lamont@xxxxxxxxxxxx> > Date: Tue, 17 Jul 2007 22:34:04 -0600 > Subject: [PATCH] mention hfsplus in mount manpage Applied, thanks. Please, don't use attachments. The best way is use git-send-email: $ git format-patch $ git send-email --no-signed-off-by-cc --to \ util-linux-ng@xxxxxxxxxxxxxxx file.patch Karel -- Karel Zak <kzak@xxxxxxxxxx> - To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html