From 839a32891754f3f162b73f88b58e04eab8032d7a Mon Sep 17 00:00:00 2001 From: Andre Date: Tue, 2 May 2006 00:07:35 +0200 Subject: [PATCH] fix trivial compiler warning in net.c net.c:347:7: warning: extra tokens at end of #else directive --- net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net.c b/net.c index 5b754111..bf35162f 100644 --- 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 * -- 2.30.2