From ebdb9b9e13aee9411a49e420573112db4a37ae44 Mon Sep 17 00:00:00 2001 From: des Date: Tue, 4 Mar 2008 09:29:54 +0000 Subject: [PATCH] The final piece of the double -> string puzzle. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2549 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/lib/libvcl/vcc_string.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/varnish-cache/lib/libvcl/vcc_string.c b/varnish-cache/lib/libvcl/vcc_string.c index 25d3c53d..082bbd71 100644 --- a/varnish-cache/lib/libvcl/vcc_string.c +++ b/varnish-cache/lib/libvcl/vcc_string.c @@ -145,6 +145,9 @@ vcc_StringVal(struct tokenlist *tl) case INT: Fb(tl, 0, "VRT_int_string(sp, %s)", vp->rname); break; + case FLOAT: + Fb(tl, 0, "VRT_double_string(sp, %s)", vp->rname); + break; default: vsb_printf(tl->sb, "String representation of '%s' not implemented yet.\n", -- 2.39.5