diff options
author | Jeremy Allison <jra@samba.org> | 2005-12-12 22:07:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:49 -0500 |
commit | 9d93af713f8520ca506730dd32aa2b994937eaba (patch) | |
tree | d12038809cfca65fea202c1fde29da4363e5d68b /source/web | |
parent | e96000c16cd182b2e2cbdc1a287002306d2965e6 (diff) | |
download | samba-9d93af713f8520ca506730dd32aa2b994937eaba.tar.gz samba-9d93af713f8520ca506730dd32aa2b994937eaba.tar.xz samba-9d93af713f8520ca506730dd32aa2b994937eaba.zip |
r12203: Add the share path into the sharemode db. This involves
revving the minor version number for libsmbsharemodes (we
now have a new _ex interface that takes the share path
as well as the filename). Needed for #3303. Some code written
by SATOH Fumiyasu <fumiya@samba.gr.jp> included in the changes
to locking/locking.c. The smbstatus output is a bit of a mess
and needs overhauling...
Jeremy.
Diffstat (limited to 'source/web')
-rw-r--r-- | source/web/statuspage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/web/statuspage.c b/source/web/statuspage.c index 6447f95bac4..24d7eaf72e7 100644 --- a/source/web/statuspage.c +++ b/source/web/statuspage.c @@ -106,7 +106,7 @@ static char *tstring(time_t t) return buf; } -static void print_share_mode(const struct share_mode_entry *e, char *fname) +static void print_share_mode(const struct share_mode_entry *e, const char *sharepath, const char *fname) { char *utf8_fname; int deny_mode = map_share_mode_to_deny_mode(e->share_access, |