From 54ea3c23e3bfd25008198e85fdcc1f48b0325eab Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 21 Jun 2006 02:31:12 +0000 Subject: r16435: Add in the uid info that Jerry needs into the share_mode struct. Allows us to know the unix uid of the opener of the file/directory. Needed for info level queries on open files. Jeremy. (This used to be commit d929323d6f513902381369d77bcd7b714346d713) --- source3/web/statuspage.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source3/web') diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index 769ab217b3..cb6fa91171 100644 --- a/source3/web/statuspage.c +++ b/source3/web/statuspage.c @@ -119,6 +119,7 @@ static void print_share_mode(const struct share_mode_entry *e, const char *share e->private_options); printf("%s",_(mapPid2Machine(e->pid))); + printf("%u",(unsigned int)e->uid); printf(""); switch ((deny_mode>>4)&0xF) { case DENY_NONE: printf("DENY_NONE"); break; -- cgit