From: phk Date: Mon, 4 Jun 2007 19:08:30 +0000 (+0000) Subject: Fold long lines. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2936176d71a7cf3aeb0cd5626cf364d5c9db2992;p=varnish Fold long lines. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1497 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_acceptor.c b/varnish-cache/bin/varnishd/cache_acceptor.c index 50b519a5..730f1d2f 100644 --- a/varnish-cache/bin/varnishd/cache_acceptor.c +++ b/varnish-cache/bin/varnishd/cache_acceptor.c @@ -162,14 +162,16 @@ vca_acct(void *arg) tv_sndtimeo.tv_sec = params->send_timeout; TAILQ_FOREACH(ls, &heritage.socks, list) AZ(setsockopt(ls->sock, SOL_SOCKET, - SO_SNDTIMEO, &tv_sndtimeo, sizeof tv_sndtimeo)); + SO_SNDTIMEO, + &tv_sndtimeo, sizeof tv_sndtimeo)); } if (params->sess_timeout != tv_rcvtimeo.tv_sec) { need_test = 1; tv_rcvtimeo.tv_sec = params->sess_timeout; TAILQ_FOREACH(ls, &heritage.socks, list) AZ(setsockopt(ls->sock, SOL_SOCKET, - SO_RCVTIMEO, &tv_rcvtimeo, sizeof tv_rcvtimeo)); + SO_RCVTIMEO, + &tv_rcvtimeo, sizeof tv_rcvtimeo)); } i = poll(pfd, heritage.nsocks, 1000); for (j = 0; j < heritage.nsocks; j++) {