summaryrefslogtreecommitdiff
path: root/source3/web
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-01-15 15:55:17 -0800
committerJeremy Allison <jra@samba.org>2009-01-15 15:55:17 -0800
commit660d7794b67c1af9d699e5f99b9e5275b06ad67b (patch)
tree659414d45f97e570c5ed3e2af914d1de89ce62dc /source3/web
parent6fd867f036b0dfbc4d6639c737467132b41dd2e5 (diff)
downloadsamba-660d7794b67c1af9d699e5f99b9e5275b06ad67b.tar.gz
samba-660d7794b67c1af9d699e5f99b9e5275b06ad67b.tar.bz2
samba-660d7794b67c1af9d699e5f99b9e5275b06ad67b.zip
Fix bug #6040 - Missing <th> header in Status page.
Based on a patch from pkg-samba-maint@lists.alioth.debian.org. Jeremy.
Diffstat (limited to 'source3/web')
-rw-r--r--source3/web/statuspage.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c
index cb8485a6eb..7dd1cf55cc 100644
--- a/source3/web/statuspage.c
+++ b/source3/web/statuspage.c
@@ -427,7 +427,8 @@ void status_page(void)
printf("<h3>%s</h3>\n", _("Open Files"));
printf("<table border=1>\n");
- printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n", _("PID"), _("Sharing"), _("R/W"), _("Oplock"), _("File"), _("Date"));
+ printf("<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>\n",
+ _("PID"), _("UID"), _("Sharing"), _("R/W"), _("Oplock"), _("File"), _("Date"));
locking_init_readonly();
share_mode_forall(print_share_mode, NULL);