diff options
author | Ruslan Ermilov <ru@nginx.com> | 2016-03-30 11:52:16 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2016-03-30 11:52:16 +0300 |
commit | 7ad57da59821294255610545b2b5ce07e74124a5 (patch) | |
tree | 91bb44ad5950b703d0f49a8744f0b9b08cf29f11 /src/core/ngx_syslog.c | |
parent | dfbc51a8cc850154fe8839408f32c7e322f5cdf0 (diff) | |
download | nginx-7ad57da59821294255610545b2b5ce07e74124a5.tar.gz nginx-7ad57da59821294255610545b2b5ce07e74124a5.zip |
Style.
Diffstat (limited to 'src/core/ngx_syslog.c')
-rw-r--r-- | src/core/ngx_syslog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/ngx_syslog.c b/src/core/ngx_syslog.c index 08f4c0483..0a67928e0 100644 --- a/src/core/ngx_syslog.c +++ b/src/core/ngx_syslog.c @@ -10,9 +10,9 @@ #define NGX_SYSLOG_MAX_STR \ - NGX_MAX_ERROR_STR + sizeof("<255>Jan 01 00:00:00 ") - 1 \ - + (NGX_MAXHOSTNAMELEN - 1) + 1 /* space */ \ - + 32 /* tag */ + 2 /* colon, space */ + NGX_MAX_ERROR_STR + sizeof("<255>Jan 01 00:00:00 ") - 1 \ + + (NGX_MAXHOSTNAMELEN - 1) + 1 /* space */ \ + + 32 /* tag */ + 2 /* colon, space */ static char *ngx_syslog_parse_args(ngx_conf_t *cf, ngx_syslog_peer_t *peer); |