]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
recv_afs_msg(): Fix indentation.
authorAndre Noll <maan@systemlinux.org>
Mon, 9 Mar 2009 20:29:27 +0000 (21:29 +0100)
committerAndre Noll <maan@systemlinux.org>
Mon, 9 Mar 2009 20:29:27 +0000 (21:29 +0100)
vss.c

diff --git a/vss.c b/vss.c
index 1dd24664970e2a1a73768f696411889f12c3f0c9..a8486bbd9e86e64b6734117386ab5fcca83bd26a 100644 (file)
--- a/vss.c
+++ b/vss.c
@@ -708,9 +708,9 @@ static int recv_afs_msg(int afs_socket, int *fd, uint32_t *code, uint32_t *data)
        for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
                if (cmsg->cmsg_level != SOL_SOCKET
                        || cmsg->cmsg_type != SCM_RIGHTS)
-               continue;
+                       continue;
                if ((cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int) != 1)
-               continue;
+                       continue;
                *fd = *(int *)CMSG_DATA(cmsg);
        }
        return 1;