From 845cab09c4c3ffffa4c84c5e40c349e7e7a15a45 Mon Sep 17 00:00:00 2001 From: phk Date: Tue, 13 Jun 2006 08:05:33 +0000 Subject: [PATCH] After having a strong cup of tea: don't name files with leading underscore even though that's how FreeBSD's kernel does it. In my private world a leading underscore means "junk file, remove at your pleasure". git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@173 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishd/cache.h | 2 +- varnish-cache/bin/varnishd/mgt.h | 2 +- varnish-cache/bin/varnishd/{_stevedore.h => stevedore.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename varnish-cache/bin/varnishd/{_stevedore.h => stevedore.h} (100%) diff --git a/varnish-cache/bin/varnishd/cache.h b/varnish-cache/bin/varnishd/cache.h index 2f5a8fd6..459a607e 100644 --- a/varnish-cache/bin/varnishd/cache.h +++ b/varnish-cache/bin/varnishd/cache.h @@ -45,7 +45,7 @@ struct storage { struct stevedore *stevedore; }; -#include "_stevedore.h" +#include "stevedore.h" /* * XXX: in the longer term, we want to support multiple stevedores, diff --git a/varnish-cache/bin/varnishd/mgt.h b/varnish-cache/bin/varnishd/mgt.h index 89c90d52..711a8360 100644 --- a/varnish-cache/bin/varnishd/mgt.h +++ b/varnish-cache/bin/varnishd/mgt.h @@ -14,7 +14,7 @@ void mgt_child_request(mgt_ccb_f *, void *, char **argv, const char *fmt, ...); /* tcp.c */ int open_tcp(const char *port); -#include "_stevedore.h" +#include "stevedore.h" extern struct stevedore sma_stevedore; extern struct stevedore smf_stevedore; diff --git a/varnish-cache/bin/varnishd/_stevedore.h b/varnish-cache/bin/varnishd/stevedore.h similarity index 100% rename from varnish-cache/bin/varnishd/_stevedore.h rename to varnish-cache/bin/varnishd/stevedore.h -- 2.39.5