From 2936176d71a7cf3aeb0cd5626cf364d5c9db2992 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 4 Jun 2007 19:08:30 +0000 Subject: [PATCH] Fold long lines. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1497 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/cache_acceptor.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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++) { -- 2.39.5