diff options
author | Jeremy Allison <jra@samba.org> | 2006-06-21 02:31:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:18:54 -0500 |
commit | 54ea3c23e3bfd25008198e85fdcc1f48b0325eab (patch) | |
tree | f3aa0f84b563d6b6dc9a8cd7f682fffa5bf22e96 /source3/web | |
parent | 607f9ffc8e3b4018741db277d9240b2b19c5379e (diff) | |
download | samba-54ea3c23e3bfd25008198e85fdcc1f48b0325eab.tar.gz samba-54ea3c23e3bfd25008198e85fdcc1f48b0325eab.tar.bz2 samba-54ea3c23e3bfd25008198e85fdcc1f48b0325eab.zip |
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)
Diffstat (limited to 'source3/web')
-rw-r--r-- | source3/web/statuspage.c | 1 |
1 files changed, 1 insertions, 0 deletions
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("<tr><td>%s</td>",_(mapPid2Machine(e->pid))); + printf("<td>%u</td>",(unsigned int)e->uid); printf("<td>"); switch ((deny_mode>>4)&0xF) { case DENY_NONE: printf("DENY_NONE"); break; |