- Got rid of a superfluous empty line.
authorWayne Davison <wayned@samba.org>
Thu, 10 Nov 2005 16:45:00 +0000 (16:45 +0000)
committerWayne Davison <wayned@samba.org>
Thu, 10 Nov 2005 16:45:00 +0000 (16:45 +0000)
- Indent the "oom:" and "skip_filters:" labels away from column 0.

flist.c

diff --git a/flist.c b/flist.c
index a24c117..8f26f03 100644 (file)
--- a/flist.c
+++ b/flist.c
@@ -820,7 +820,7 @@ struct file_struct *make_file(char *fname, struct file_list *flist,
                                return NULL;
        }
 
                                return NULL;
        }
 
-    skip_filters:
+  skip_filters:
 
        if (verbose > 2) {
                rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
 
        if (verbose > 2) {
                rprintf(FINFO, "[%s] make_file(%s,*,%d)\n",
@@ -1314,7 +1314,6 @@ struct file_list *recv_file_list(int f)
        if (!flist->files)
                goto oom;
 
        if (!flist->files)
                goto oom;
 
-
        while ((flags = read_byte(f)) != 0) {
                struct file_struct *file;
 
        while ((flags = read_byte(f)) != 0) {
                struct file_struct *file;
 
@@ -1375,7 +1374,7 @@ struct file_list *recv_file_list(int f)
 
        return flist;
 
 
        return flist;
 
-oom:
+  oom:
        out_of_memory("recv_file_list");
        return NULL;            /* not reached */
 }
        out_of_memory("recv_file_list");
        return NULL;            /* not reached */
 }