The branch, master has been updated
via 660d7794b67c1af9d699e5f99b9e5275b06ad67b (commit)
from 6fd867f036b0dfbc4d6639c737467132b41dd2e5 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 660d7794b67c1af9d699e5f99b9e5275b06ad67b
Author: Jeremy Allison <[email protected]>
Date: Thu Jan 15 15:55:17 2009 -0800
Fix bug #6040 - Missing <th> header in Status page.
Based on a patch from [email protected].
Jeremy.
-----------------------------------------------------------------------
Summary of changes:
source3/web/statuspage.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c
index cb8485a..7dd1cf5 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);
--
Samba Shared Repository