summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubulle <bubulle@alioth.debian.org>2009-01-24 15:04:26 +0000
committerbubulle <bubulle@alioth.debian.org>2009-01-24 15:04:26 +0000
commite3f1859b02a35daf166037b39ed59fa975d8dc99 (patch)
tree016031010ae7c0c55fdf7346054fdada424a8a56
parentf019638d660325fc879e8de2ae17569a3d107f17 (diff)
downloadsamba-e3f1859b02a35daf166037b39ed59fa975d8dc99.tar.gz
Commit fix for #511275
git-svn-id: svn://svn.debian.org/svn/pkg-samba/branches/samba/experimental@2350 fc4039ab-9d04-0410-8cac-899223bdd6b0
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/swat-status-page.patch22
2 files changed, 23 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series
index 840e640da1..bcba06efb6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -19,3 +19,4 @@ smbtar-bashism.patch
no-unnecessary-cups.patch
shrink-dead-code.patch
smb.conf.5-undefined-configure.patch
+swat-status-page.patch
diff --git a/debian/patches/swat-status-page.patch b/debian/patches/swat-status-page.patch
new file mode 100644
index 0000000000..4263d419f4
--- /dev/null
+++ b/debian/patches/swat-status-page.patch
@@ -0,0 +1,22 @@
+Goal: Correct headers in SWAT status page
+
+Fixes: #511275
+
+Status wrt upstream: Will be fixed in 3.3.0
+
+Note:
+
+Index: samba-3.3.0rc2/source/web/statuspage.c
+===================================================================
+--- samba-3.3.0rc2.orig/source/web/statuspage.c
++++ samba-3.3.0rc2/source/web/statuspage.c
+@@ -427,7 +427,8 @@
+
+ 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);