From: Derrick Brashear Date: Sun, 24 Apr 2005 01:54:42 +0000 (+0000) Subject: linux-osi-module-proc-csdb-sprintf-bug-20050423 X-Git-Tag: openafs-devel-1_5_0~611 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=784854caceb5b9fa6e1a6db1446887b99b4bb14e;p=packages%2Fo%2Fopenafs.git linux-osi-module-proc-csdb-sprintf-bug-20050423 FIXES 18334 remove extraneous %s --- diff --git a/src/afs/LINUX/osi_module.c b/src/afs/LINUX/osi_module.c index 5120c509a..c4e483494 100644 --- a/src/afs/LINUX/osi_module.c +++ b/src/afs/LINUX/osi_module.c @@ -113,7 +113,7 @@ length) (int)((addr>>24) & 0xff), (int)((addr>>16) & 0xff), (int)((addr>>8) & 0xff), (int)( addr & 0xff)); - sprintf(temp, "%s #%s%s\n", tbuffer, tbuffer); + sprintf(temp, "%s #%s\n", tbuffer, tbuffer); sprintf(buffer + len, "%-89s\n", temp); len += 90; if (pos >= offset+length) {