r731 - trunk/varnish-cache/bin/varnishd

des at projects.linpro.no des at projects.linpro.no
Mon Aug 7 18:17:35 CEST 2006


Author: des
Date: 2006-08-07 18:17:35 +0200 (Mon, 07 Aug 2006)
New Revision: 731

Modified:
   trunk/varnish-cache/bin/varnishd/mgt_cli.c
Log:
#include <compat.h> for asprintf().

Modified: trunk/varnish-cache/bin/varnishd/mgt_cli.c
===================================================================
--- trunk/varnish-cache/bin/varnishd/mgt_cli.c	2006-08-07 16:15:00 UTC (rev 730)
+++ trunk/varnish-cache/bin/varnishd/mgt_cli.c	2006-08-07 16:17:35 UTC (rev 731)
@@ -4,14 +4,16 @@
  * The management process' CLI handling
  */
 
+#include <sys/types.h>
+
+#include <assert.h>
+#include <stdarg.h>
 #include <stdio.h>
-#include <assert.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
-#include <stdarg.h>
-#include <sys/types.h>
 
+#include "compat.h"
 #include "cli_priv.h"
 #include "cli.h"
 #include "vsb.h"




More information about the varnish-commit mailing list