projects
/
OpenSRF.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8217134
)
swapped the formats -- typo
author
miker
<miker@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 28 May 2007 20:16:09 +0000
(20:16 +0000)
committer
miker
<miker@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 28 May 2007 20:16:09 +0000
(20:16 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@921
9efc2488
-bf62-4759-914b-
345cdb29e865
src/utils/log.c
patch
|
blob
|
history
diff --git
a/src/utils/log.c
b/src/utils/log.c
index
cac10b0
..
3adb8b1
100644
(file)
--- a/
src/utils/log.c
+++ b/
src/utils/log.c
@@
-61,7
+61,7
@@
void osrfLogSetIsClient(int is) {
/* go ahead and create the xid prefix so it will be consistent later */
static char buff[32];
memset(buff, 0x0, 32);
- snprintf(buff, 32, "%
ld%
d", (int)time(NULL), (long) getpid());
+ snprintf(buff, 32, "%
d%l
d", (int)time(NULL), (long) getpid());
__osrfLogXidPfx = buff;
}