From: phk Date: Mon, 4 Feb 2008 09:58:55 +0000 (+0000) Subject: Backend fini functions are methods of the class, call the generic one. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65165f6c6c3ebfaf7328df967b91171986ae6b10;p=varnish Backend fini functions are methods of the class, call the generic one. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2425 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/lib/libvcl/vcc_backend.c b/varnish-cache/lib/libvcl/vcc_backend.c index 518d7eb5..c0253dd4 100644 --- a/varnish-cache/lib/libvcl/vcc_backend.c +++ b/varnish-cache/lib/libvcl/vcc_backend.c @@ -432,7 +432,7 @@ vcc_ParseRandomDirector(struct tokenlist *tl, const struct token *t_first, struc vcc_NextToken(tl); Fi(tl, 0, "\tVRT_init_random_backend(&VGC_backend_%.*s , &vdr_%.*s);\n", PF(t_dir), PF(t_dir)); - Ff(tl, 0, "\tVRT_fini_random_backend(VGC_backend_%.*s);\n", PF(t_dir)); + Ff(tl, 0, "\tVRT_fini_backend(VGC_backend_%.*s);\n", PF(t_dir)); } /*--------------------------------------------------------------------