diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-11-23 03:36:10 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-11-23 03:36:10 +0000 |
commit | 8757254f39ab75c93e9917a6bdf99475c6a024d7 (patch) | |
tree | d29c188100e79b2ee4374b43efe61db80e65947c /source3/web | |
parent | fd1533862ed8bb0c9e0fb4996a37dd784fd17eae (diff) | |
download | samba-8757254f39ab75c93e9917a6bdf99475c6a024d7.tar.gz samba-8757254f39ab75c93e9917a6bdf99475c6a024d7.tar.bz2 samba-8757254f39ab75c93e9917a6bdf99475c6a024d7.zip |
changed string_sub() to replace " ; and ` in the inserted string with _
use all_string_sub() if you don't want this.
(This used to be commit a3357ab49335106674fe7a7481cd0f146d74fbe5)
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/statuspage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index 81564390a0..faf1dcb20d 100644 --- a/source3/web/statuspage.c +++ b/source3/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; } |