summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-01-15 15:55:29 -0800
committerKarolin Seeger <kseeger@samba.org>2009-01-20 14:16:47 +0100
commitfde962def114e51e536719c2a6dd54727d7aaff1 (patch)
tree61fbd0c91042c39aacd66c3930dcd66242101d89
parent927372a559e153a5a14055463e2e5eaba0c460d5 (diff)
downloadsamba-fde962def114e51e536719c2a6dd54727d7aaff1.tar.gz
Fix bug #6040 - Missing <th> header in Status page.
Based on a patch from pkg-samba-maint@lists.alioth.debian.org. Jeremy. (cherry picked from commit 3764e6ed2a683a69706d7654e46b998de9294883)
-rw-r--r--source/web/statuspage.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/web/statuspage.c b/source/web/statuspage.c
index e684a075c25..8070ae7e79d 100644
--- a/source/web/statuspage.c
+++ b/source/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);