[experimental-ims] 685d9b9 Missed renaming these two bits.

Geoff Simmons geoff at varnish-cache.org
Mon Jan 9 21:51:49 CET 2012


commit 685d9b962246d7dbad53d5076b6aa547809c2b06
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Sat Sep 17 11:02:31 2011 +0000

    Missed renaming these two bits.

diff --git a/bin/varnishd/cache_waiter_kqueue.c b/bin/varnishd/cache_waiter_kqueue.c
index cbea248..8febec7 100644
--- a/bin/varnishd/cache_waiter_kqueue.c
+++ b/bin/varnishd/cache_waiter_kqueue.c
@@ -205,7 +205,7 @@ vwk_thread(void *priv)
 /*--------------------------------------------------------------------*/
 
 static void
-vca_kqueue_pass(void *priv, const struct sess *sp)
+vwk_pass(void *priv, const struct sess *sp)
 {
 	struct vwk *vwk;
 
@@ -216,7 +216,7 @@ vca_kqueue_pass(void *priv, const struct sess *sp)
 /*--------------------------------------------------------------------*/
 
 static void *
-vca_kqueue_init(void)
+vwk_init(void)
 {
 	int i;
 	struct vwk *vwk;
@@ -241,8 +241,8 @@ vca_kqueue_init(void)
 
 struct waiter waiter_kqueue = {
 	.name =		"kqueue",
-	.init =		vca_kqueue_init,
-	.pass =		vca_kqueue_pass,
+	.init =		vwk_init,
+	.pass =		vwk_pass,
 };
 
 #endif /* defined(HAVE_KQUEUE) */



More information about the varnish-commit mailing list