summaryrefslogtreecommitdiffstats
path: root/source/web
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-06-21 02:31:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:18:54 -0500
commitd929323d6f513902381369d77bcd7b714346d713 (patch)
tree4d31fd37369689f43f952603e44821fa4550ed52 /source/web
parent490c7c84674860ecd9daa24341edb427b9fe0aa5 (diff)
downloadsamba-d929323d6f513902381369d77bcd7b714346d713.tar.gz
samba-d929323d6f513902381369d77bcd7b714346d713.tar.xz
samba-d929323d6f513902381369d77bcd7b714346d713.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.
Diffstat (limited to 'source/web')
-rw-r--r--source/web/statuspage.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/web/statuspage.c b/source/web/statuspage.c
index 769ab217b3e..cb6fa911711 100644
--- a/source/web/statuspage.c
+++ b/source/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;