summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-01-15 15:54:07 -0800
committerKarolin Seeger <kseeger@samba.org>2009-01-28 09:40:05 +0100
commitc5d50c4f941d3f21d5b8449f951af51bdb23887f (patch)
tree5520495e639624f08fb03617d399764c3db75712 /source
parent629fc6c835a21f95cdf2f835afd5045b94c21258 (diff)
downloadsamba-c5d50c4f941d3f21d5b8449f951af51bdb23887f.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 b13f7e296a70e1280baae9f2f3156043c48bafa9)
Diffstat (limited to 'source')
-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 5d9a23922fd..80f079eed0d 100644
--- a/source/web/statuspage.c
+++ b/source/web/statuspage.c
@@ -426,7 +426,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);