]> err.no Git - varnish/commitdiff
s/init/start/
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 3 Jul 2006 14:36:03 +0000 (14:36 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Mon, 3 Jul 2006 14:36:03 +0000 (14:36 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@280 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/hash_simple_list.c

index dfbc2cabe7a18ab0eb2b91e3e03618d1a74b7ec9..7eb8bf6c78b612f837c7983e8d7b0813b00046cc 100644 (file)
@@ -32,7 +32,7 @@ static pthread_mutex_t hsl_mutex;
  */
 
 static void
-hsl_init(void)
+hsl_start(void)
 {
 
        AZ(pthread_mutex_init(&hsl_mutex, NULL));
@@ -113,7 +113,7 @@ hsl_deref(struct objhead *obj)
 struct hash_slinger hsl_slinger = {
        "simple_list",
        NULL,
-       hsl_init,
+       hsl_start,
        hsl_lookup,
        hsl_deref,
 };