summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/time.c b/source3/lib/time.c
index 74ca56bdc5..635ede9be2 100644
--- a/source3/lib/time.c
+++ b/source3/lib/time.c
@@ -694,7 +694,7 @@ char *timestring(BOOL hires)
".%06ld",
(long)tp.tv_usec);
} else {
- strftime(TimeBuf,100,"%Y/%m/%d %H:%M:%S",tm);
+ strftime(TimeBuf,sizeof(TimeBuf)-1,"%Y/%m/%d %H:%M:%S",tm);
}
#else
if (hires) {