]> err.no Git - varnish/commitdiff
Minor style issues.
authordes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 11 May 2007 12:19:48 +0000 (12:19 +0000)
committerdes <des@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 11 May 2007 12:19:48 +0000 (12:19 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1416 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishhist/varnishhist.c
varnish-cache/bin/varnishlog/varnishlog.c
varnish-cache/bin/varnishstat/varnishstat.c

index d374ebf25b0a0d6e75de9b60b4b6c7a3beae4543..9d569c7e686ee05d052acf93e388a55a62160e77 100644 (file)
@@ -224,5 +224,5 @@ main(int argc, char **argv)
                        break;
        }
 
-       return (0);
+       exit(0);
 }
index f5c74b7d7d98027afbb517c86c97d87fe254570c..d4f348fd7171918b3e7e78e2adfd5d242b3aacca 100644 (file)
@@ -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);
 }
index b2305b92597bf0705b9cf5a753399fdcdb98e27d..0b3f46cb90b98fcf31178742df382bace14930f0 100644 (file)
@@ -169,6 +169,5 @@ main(int argc, char **argv)
 #undef MAC_STAT
        }
 
-       exit (0);
-
+       exit(0);
 }