summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-05-18 16:17:51 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-05-18 16:17:51 +0000
commitc0399e22bb3f1ec7b7074cf078b0146cbb57d448 (patch)
treeee9ce2a4e1cec939ee9457b90bc78117d63ba14e /src
parent0e7ed23cec70cec3e6bce9a90e2f45708b658e46 (diff)
downloadnginx-c0399e22bb3f1ec7b7074cf078b0146cbb57d448.tar.gz
nginx-c0399e22bb3f1ec7b7074cf078b0146cbb57d448.tar.bz2
r2756 merge:
add quotes for configure options with spaces
Diffstat (limited to 'src')
-rw-r--r--src/core/nginx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c
index 28624db76..05d26eefc 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -261,8 +261,8 @@ main(int argc, char *const *argv)
}
#endif
- p = "configure arguments: " NGX_CONFIGURE CRLF;
- n = sizeof("configure arguments :" NGX_CONFIGURE CRLF) - 1;
+ p = "configure arguments:" NGX_CONFIGURE CRLF;
+ n = sizeof("configure arguments:" NGX_CONFIGURE CRLF) - 1;
if (ngx_write_fd(ngx_stderr_fileno, p, n) != n) {
return 1;