From c7129a9562b9965e8af61cd67191f56282e010e0 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Fri, 20 Jan 2017 17:54:12 -0500 Subject: [PATCH] roken: pidfile -> rk_pidfile Commit 7dc4481ed2a075911ede2d058152c0a356133a83 which changed from pidfile -> rk_pidfile was incomplete. Must handle the NO_PIDFILE case. Change-Id: Ifc0b135e1fa7abdf4e370ad4b8fe2eb1305760f5 --- lib/roken/roken.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/roken.h.in b/lib/roken/roken.h.in index 0f2c27741..74b1a8a61 100644 --- a/lib/roken/roken.h.in +++ b/lib/roken/roken.h.in @@ -757,7 +757,7 @@ readv(int, const struct iovec *, int); #endif #ifdef NO_PIDFILES -#define pidfile(x) ((void) 0) +#define rk_pidfile(x) ((void) 0) #else ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL rk_pidfile (const char*); #endif