r1480 - trunk/varnish-cache/bin/varnishncsa

des at projects.linpro.no des at projects.linpro.no
Wed May 30 16:54:29 CEST 2007


Author: des
Date: 2007-05-30 16:54:28 +0200 (Wed, 30 May 2007)
New Revision: 1480

Modified:
   trunk/varnish-cache/bin/varnishncsa/varnishncsa.c
Log:
Whitespace cleanup.


Modified: trunk/varnish-cache/bin/varnishncsa/varnishncsa.c
===================================================================
--- trunk/varnish-cache/bin/varnishncsa/varnishncsa.c	2007-05-30 09:53:49 UTC (rev 1479)
+++ trunk/varnish-cache/bin/varnishncsa/varnishncsa.c	2007-05-30 14:54:28 UTC (rev 1480)
@@ -90,7 +90,7 @@
 static size_t nll;
 
 static time_t t;
-	
+
 static int
 isprefix(const char *str, const char *prefix, const char *end, const char **next)
 {
@@ -178,7 +178,7 @@
 	struct logline *lp;
 
 	end = ptr + len;
-	
+
 	if (!(spec & VSL_S_CLIENT || spec & VSL_S_BACKEND))
 		return (0);
 
@@ -226,7 +226,7 @@
 	case SLT_RxRequest:
 		if (tag == SLT_RxRequest && (spec & VSL_S_BACKEND))
 			break;
-		
+
 		if (lp->df_m != NULL)
 			lp->bogus = 1;
 		else
@@ -239,7 +239,7 @@
 	case SLT_RxURL:
 		if (tag == SLT_RxURL && (spec & VSL_S_BACKEND))
 			break;
-		
+
 		if (lp->df_Uq != NULL)
 			lp->bogus = 1;
 		else
@@ -252,7 +252,7 @@
 	case SLT_RxProtocol:
 		if (tag == SLT_RxProtocol && (spec & VSL_S_BACKEND))
 			break;
-		
+
 		if (lp->df_H != NULL)
 			lp->bogus = 1;
 		else
@@ -265,7 +265,7 @@
 	case SLT_TxStatus:
 		if (tag == SLT_TxStatus && (spec & VSL_S_BACKEND))
 			break;
-		
+
 		if (lp->df_s != NULL)
 			lp->bogus = 1;
 		else
@@ -282,7 +282,7 @@
 			} else if (isprefix(ptr, "date:", end, &next)) {
 				if (strptime(trimline(next, end), "%a, %d %b %Y %T", &tm))
 					t = mktime(&tm);
-			}	
+			}
 			break;
 		}
 		if (isprefix(ptr, "user-agent:", end, &next))
@@ -309,21 +309,21 @@
 
 	if ((spec & VSL_S_CLIENT) && tag != SLT_ReqEnd)
 		return (0);
-		 
+
 	if ((spec & VSL_S_BACKEND) && tag != SLT_BackendReuse &&
 	    (tag != SLT_BackendClose || lp->df_Uq))
 		return (0);
-	
+
 	if (tag == SLT_ReqEnd) {
 		if (sscanf(ptr, "%*u %*u.%*u %ld.", &l) != 1)
 			lp->bogus = 1;
 		else
 			t = l;
 	}
-	
+
 	if (!lp->bogus) {
-		
 		fo = priv;
+
 		/* %h */
 		if (!lp->df_h && spec & VSL_S_BACKEND)
 			fprintf(fo, "127.0.0.1 ");




More information about the varnish-commit mailing list