git.samba.org
/
samba.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
changed string_sub() to replace " ; and ` in the inserted string with _
[samba.git]
/
source
/
web
/
statuspage.c
diff --git
a/source/web/statuspage.c
b/source/web/statuspage.c
index 81564390a0c1c41051c261a75c1f84f907b7e869..faf1dcb20d613acf6a2baafecae5f1bd8611dc43 100644
(file)
--- a/
source/web/statuspage.c
+++ b/
source/web/statuspage.c
@@
-26,7
+26,7
@@
static char *tstring(time_t t)
{
static pstring buf;
pstrcpy(buf, asctime(LocalTime(&t)));
- string_sub(buf," "," ");
+
all_
string_sub(buf," "," ");
return buf;
}