Module Name: src
Committed By: pgoyette
Date: Mon May 30 18:47:27 UTC 2011
Modified Files:
src/external/ibm-public/postfix/dist/src/util: unix_recv_fd.c
Log Message:
Add missing semicolon so it compiles
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c
diff -u src/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c:1.5 src/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c:1.6
--- src/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c:1.5 Mon May 30 16:24:13 2011
+++ src/external/ibm-public/postfix/dist/src/util/unix_recv_fd.c Mon May 30 18:47:27 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: unix_recv_fd.c,v 1.5 2011/05/30 16:24:13 joerg Exp $ */
+/* $NetBSD: unix_recv_fd.c,v 1.6 2011/05/30 18:47:27 pgoyette Exp $ */
/*++
/* NAME
@@ -73,7 +73,7 @@
# ifdef __clang__
char control[128];
# else
- char control[CMSG_SPACE(sizeof(newfd))]
+ char control[CMSG_SPACE(sizeof(newfd))];
# endif
} control_un;
struct cmsghdr *cmptr;