From 0e551cd5a2f468ad297f1bfbccbc9f91579dc794 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 31 Jan 2006 21:54:24 +0000 Subject: r13262: Arrgggg. Fix smbstatus and swat status to ignore bloody placeholder share mode entries (I hate these - I've had to add this filter code now to too many places :-). Jeremy. (This used to be commit 815340e1a413f98c1c36aacc1c34041e9160d0e3) --- source3/web/statuspage.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'source3/web/statuspage.c') diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index 24d7eaf72e..7430f4ebf5 100644 --- a/source3/web/statuspage.c +++ b/source3/web/statuspage.c @@ -109,7 +109,13 @@ static char *tstring(time_t t) 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, + int deny_mode; + + if (!is_valid_share_mode_entry(e)) { + return; + } + + deny_mode = map_share_mode_to_deny_mode(e->share_access, e->private_options); printf("%s",_(mapPid2Machine(e->pid))); -- cgit