Commit fdce0d57 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Comment out parse functions for SIZE type.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@5004 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent d26a6255
......@@ -93,6 +93,7 @@ vcc_TimeUnit(struct vcc *tl)
return (sc);
}
#if 0
/*--------------------------------------------------------------------
* Recognize and convert units of size, return bytes.
*/
......@@ -121,6 +122,7 @@ vcc_SizeUnit(struct vcc *tl)
vcc_NextToken(tl);
return (sc);
}
#endif
/*--------------------------------------------------------------------
* Recognize and convert { CNUM } to unsigned value
......@@ -207,6 +209,7 @@ vcc_TimeVal(struct vcc *tl, double *d)
*d = v * sc;
}
#if 0
/*--------------------------------------------------------------------*/
void
......@@ -220,6 +223,7 @@ vcc_SizeVal(struct vcc *tl, double *d)
sc = vcc_SizeUnit(tl);
*d = v * sc;
}
#endif
/*--------------------------------------------------------------------*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment