From: des Date: Thu, 3 May 2007 08:48:51 +0000 (+0000) Subject: s/expl/explicit/ to circumvent a bug in gcc 3. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=695a0e074937e1468d746b11ea19465df6ed42bc;p=varnish s/expl/explicit/ to circumvent a bug in gcc 3. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1380 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/mgt_param.c b/varnish-cache/bin/varnishd/mgt_param.c index 474ab572..58d8f94a 100644 --- a/varnish-cache/bin/varnishd/mgt_param.c +++ b/varnish-cache/bin/varnishd/mgt_param.c @@ -50,7 +50,7 @@ typedef void tweak_t(struct cli *, struct parspec *, const char *arg); struct parspec { const char *name; tweak_t *func; - const char *expl; + const char *descr; const char *def; const char *units; }; @@ -617,7 +617,7 @@ mcf_param_show(struct cli *cli, char **av, void *priv) if (av[2] != NULL) { cli_out(cli, "%-20s Default is %s\n", "", pp->def); /* Format text to 72 col width */ - for (p = pp->expl; *p != '\0'; ) { + for (p = pp->descr; *p != '\0'; ) { q = strchr(p, '\n'); if (q == NULL) q = strchr(p, '\0');