fix trivial compiler warning in net.c
authorAndre <maan@p133.(none)>
Mon, 1 May 2006 22:07:35 +0000 (00:07 +0200)
committerAndre <maan@p133.(none)>
Mon, 1 May 2006 22:07:35 +0000 (00:07 +0200)
net.c:347:7: warning: extra tokens at end of #else directive

net.c

diff --git a/net.c b/net.c
index 5b754111ed54e892a5f6f0c26aa554414d3bfca1..bf35162f77d57191403972028bb04f24415a802b 100644 (file)
--- a/net.c
+++ b/net.c
@@ -344,7 +344,7 @@ int recv_cred_buffer(int fd, char *buf, size_t size)
 {
        return recv_buffer(fd, buf, size) > 0? 1 : -E_RECVMSG;
 }
-#else HAVE_UCRED
+#else /* HAVE_UCRED */
 /**
  * send NULL terminated buffer and Unix credentials of the current process
  *