diff options
author | foobar <sniper@php.net> | 2002-03-07 22:18:09 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-03-07 22:18:09 +0000 |
commit | f57fe2a8dfa9b068fdb7bf2bcba765f6b1efa964 (patch) | |
tree | 5a45707ede38112758da547b53ef0af9bc37c53f | |
parent | 88750086ccaceab66b95f6892300fa735642b3e5 (diff) | |
download | php-git-f57fe2a8dfa9b068fdb7bf2bcba765f6b1efa964.tar.gz |
- Fixed the phpinfo() tables not to blow up when using very long
configure line.
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index aeadee4713..4dfb199b72 100644 --- a/main/main.c +++ b/main/main.c @@ -382,7 +382,7 @@ PHPAPI void php_html_puts(const char *str, uint size TSRMLS_DC) smart_str_appendl(&s, "&", sizeof("&")-1); break; case ' ': - smart_str_appendl(&s, " ", sizeof(" ")-1); + smart_str_appendl(&s, " ", sizeof(" ")-1); break; case '\t': smart_str_appendl(&s, " ", sizeof(" ")-1); |