git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
8e3f1f4
)
linux-osi-module-proc-csdb-sprintf-bug-20050423
author
Derrick Brashear
<shadow@dementia.org>
Sun, 24 Apr 2005 01:54:42 +0000 (
01:54
+0000)
committer
Derrick Brashear
<shadow@dementia.org>
Sun, 24 Apr 2005 01:54:42 +0000 (
01:54
+0000)
FIXES 18334
remove extraneous %s
src/afs/LINUX/osi_module.c
patch
|
blob
|
history
diff --git
a/src/afs/LINUX/osi_module.c
b/src/afs/LINUX/osi_module.c
index
5120c50
..
c4e4834
100644
(file)
--- 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) {