git.samba.org
/
ira
/
wip.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
971f6a4
)
s3: Show share path in swat statuspage
author
Marcin Gryszkalis
<mg@fork.pl>
Mon, 18 Jan 2010 09:15:29 +0000
(10:15 +0100)
committer
Volker Lendecke
<vl@samba.org>
Mon, 18 Jan 2010 09:17:05 +0000
(10:17 +0100)
source3/web/statuspage.c
patch
|
blob
|
history
diff --git
a/source3/web/statuspage.c
b/source3/web/statuspage.c
index 590be1dde2b0b2e56a335800ecef75fbb27de287..f94ffb79264c1ae1c791ce25e331551408b7e6f4 100644
(file)
--- a/
source3/web/statuspage.c
+++ b/
source3/web/statuspage.c
@@
-123,6
+123,7
@@
static void print_share_mode(const struct share_mode_entry *e,
void *dummy)
{
char *utf8_fname;
void *dummy)
{
char *utf8_fname;
+ char *utf8_sharepath;
int deny_mode;
size_t converted_size;
int deny_mode;
size_t converted_size;
@@
-172,8
+173,10
@@
static void print_share_mode(const struct share_mode_entry *e,
printf("</td>");
push_utf8_talloc(talloc_tos(), &utf8_fname, fname, &converted_size);
printf("</td>");
push_utf8_talloc(talloc_tos(), &utf8_fname, fname, &converted_size);
- printf("<td>%s</td><td>%s</td></tr>\n",
- utf8_fname,tstring(talloc_tos(),e->time.tv_sec));
+ push_utf8_talloc(talloc_tos(), &utf8_sharepath, sharepath,
+ &converted_size);
+ printf("<td>%s</td><td>%s</td><td>%s</td></tr>\n",
+ utf8_sharepath,utf8_fname,tstring(talloc_tos(),e->time.tv_sec));
TALLOC_FREE(utf8_fname);
}
TALLOC_FREE(utf8_fname);
}
@@
-427,8
+430,8
@@
void status_page(void)
printf("<h3>%s</h3>\n", _("Open Files"));
printf("<table border=1>\n");
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><th>%s</th></tr>\n",
- _("PID"), _("UID"), _("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><
th>%s</th><
/tr>\n",
+ _("PID"), _("UID"), _("Sharing"), _("R/W"), _("Oplock"), _("
Share"), _("
File"), _("Date"));
locking_init_readonly();
share_mode_forall(print_share_mode, NULL);
locking_init_readonly();
share_mode_forall(print_share_mode, NULL);