From 9eb91a5055e6201e0bd808c634a3e31c7d075f91 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sat, 8 Sep 2012 00:19:33 -0700 Subject: uid_t is a synonym for int on osX This function is clearly osX oriented so we adapt the modifier to the target --- source3/smbd/sec_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd') diff --git a/source3/smbd/sec_ctx.c b/source3/smbd/sec_ctx.c index d73dcf422e..83674a233d 100644 --- a/source3/smbd/sec_ctx.c +++ b/source3/smbd/sec_ctx.c @@ -291,7 +291,7 @@ static void set_unix_security_ctx(uid_t uid, gid_t gid, int ngroups, gid_t *grou if (syscall(SYS_initgroups, (ngroups > max) ? max : ngroups, groups, uid) == -1 && !non_root_mode()) { DEBUG(0, ("WARNING: failed to set group list " - "(%d groups) for UID %ld: %s\n", + "(%d groups) for UID %d: %s\n", ngroups, uid, strerror(errno))); smb_panic("sys_setgroups failed"); } -- cgit