From: des Date: Fri, 11 May 2007 12:19:48 +0000 (+0000) Subject: Minor style issues. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f79e1e482f20e30abe30d6748a9c62889e3b93d5;p=varnish Minor style issues. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1416 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishhist/varnishhist.c b/varnish-cache/bin/varnishhist/varnishhist.c index d374ebf2..9d569c7e 100644 --- a/varnish-cache/bin/varnishhist/varnishhist.c +++ b/varnish-cache/bin/varnishhist/varnishhist.c @@ -224,5 +224,5 @@ main(int argc, char **argv) break; } - return (0); + exit(0); } diff --git a/varnish-cache/bin/varnishlog/varnishlog.c b/varnish-cache/bin/varnishlog/varnishlog.c index f5c74b7d..d4f348fd 100644 --- a/varnish-cache/bin/varnishlog/varnishlog.c +++ b/varnish-cache/bin/varnishlog/varnishlog.c @@ -223,29 +223,29 @@ sighup(int sig) } static int -open_log(const char *w_opt, int a_flag) +open_log(const char *w_arg, int a_flag) { int fd, flags; flags = (a_flag ? O_APPEND : O_TRUNC) | O_WRONLY | O_CREAT; - if (!strcmp(w_opt, "-")) + if (!strcmp(w_arg, "-")) fd = STDOUT_FILENO; else - fd = open(w_opt, flags, 0644); + fd = open(w_arg, flags, 0644); if (fd < 0) { - perror(w_opt); + perror(w_arg); exit (1); } return (fd); } static void -do_write(struct VSL_data *vd, const char *w_opt, int a_flag) +do_write(struct VSL_data *vd, const char *w_arg, int a_flag) { int fd, i; unsigned char *p; - fd = open_log(w_opt, a_flag); + fd = open_log(w_arg, a_flag); signal(SIGHUP, sighup); while (1) { i = VSL_NextLog(vd, &p); @@ -254,13 +254,13 @@ do_write(struct VSL_data *vd, const char *w_opt, int a_flag) if (i > 0) { i = write(fd, p, 5 + p[1]); if (i < 0) { - perror(w_opt); + perror(w_arg); exit(1); } } if (reopen) { close(fd); - fd = open_log(w_opt, a_flag); + fd = open_log(w_arg, a_flag); reopen = 0; } } @@ -282,8 +282,8 @@ main(int argc, char **argv) { int i, c; int a_flag = 0, D_flag = 0, o_flag = 0; - const char *P_opt = NULL; - const char *w_opt = NULL; + const char *P_arg = NULL; + const char *w_arg = NULL; struct pidfh *pfh = NULL; struct VSL_data *vd; @@ -301,13 +301,13 @@ main(int argc, char **argv) o_flag = 1; break; case 'P': - P_opt = optarg; + P_arg = optarg; break; case 'V': varnish_version("varnishlog"); exit(0); case 'w': - w_opt = optarg; + w_arg = optarg; break; case 'c': c_flag = 1; @@ -326,14 +326,14 @@ main(int argc, char **argv) } } - if (o_flag && w_opt != NULL) + if (o_flag && w_arg != NULL) usage(); if (VSL_OpenLog(vd)) exit(1); - if (P_opt && (pfh = vpf_open(P_opt, 0600, NULL)) == NULL) { - perror(P_opt); + if (P_arg && (pfh = vpf_open(P_arg, 0600, NULL)) == NULL) { + perror(P_arg); exit(1); } @@ -347,8 +347,8 @@ main(int argc, char **argv) if (pfh != NULL) vpf_write(pfh); - if (w_opt != NULL) - do_write(vd, w_opt, a_flag); + if (w_arg != NULL) + do_write(vd, w_arg, a_flag); if (o_flag) do_order(vd, argc - optind, argv + optind); @@ -363,5 +363,5 @@ main(int argc, char **argv) if (pfh != NULL) vpf_remove(pfh); - return (0); + exit(0); } diff --git a/varnish-cache/bin/varnishstat/varnishstat.c b/varnish-cache/bin/varnishstat/varnishstat.c index b2305b92..0b3f46cb 100644 --- a/varnish-cache/bin/varnishstat/varnishstat.c +++ b/varnish-cache/bin/varnishstat/varnishstat.c @@ -169,6 +169,5 @@ main(int argc, char **argv) #undef MAC_STAT } - exit (0); - + exit(0); }