summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bff8e49)
raw | patch | inline | side by side (parent: bff8e49)
author | Jérôme Renard <jerome.renard@gmail.com> | |
Fri, 4 Jun 2010 17:01:03 +0000 (19:01 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 7 Jun 2010 12:40:47 +0000 (14:40 +0200) |
src/varnish.c | patch | blob | history |
diff --git a/src/varnish.c b/src/varnish.c
index f4b36bf9dc48f7d0d520678d80c8c1c1a749a345..55afe295399add821f3b5c4f7b0e683b05a35443 100644 (file)
--- a/src/varnish.c
+++ b/src/varnish.c
static int varnish_config(const char *key, const char *value) /* {{{ */
{
- SET_MONITOR_FLAG("MonitorCache", monitor_cache, value);
+ SET_MONITOR_FLAG("MonitorCache" , monitor_cache , value);
SET_MONITOR_FLAG("MonitorConnections", monitor_connections, value);
- SET_MONITOR_FLAG("MonitorESI", monitor_esi, value);
- SET_MONITOR_FLAG("MonitorBackend", monitor_backend, value);
- SET_MONITOR_FLAG("MonitorFetch", monitor_fetch, value);
- SET_MONITOR_FLAG("MonitorHCB", monitor_hcb, value);
- SET_MONITOR_FLAG("MonitorSHM", monitor_shm, value);
+ SET_MONITOR_FLAG("MonitorESI" , monitor_esi , value);
+ SET_MONITOR_FLAG("MonitorBackend" , monitor_backend , value);
+ SET_MONITOR_FLAG("MonitorFetch" , monitor_fetch , value);
+ SET_MONITOR_FLAG("MonitorHCB" , monitor_hcb , value);
+ SET_MONITOR_FLAG("MonitorSHM" , monitor_shm , value);
return (0);
} /* }}} */