From cd01310f5f0ef8626e745956d93e3ef5b6becb3d Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Tue, 10 Jun 2008 15:34:19 -0400 Subject: - fail to provide the order for secure maps to not-secure clients --- src/map.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/map.c') diff --git a/src/map.c b/src/map.c index ad4c5df..77cdd49 100644 --- a/src/map.c +++ b/src/map.c @@ -346,13 +346,14 @@ map_master_name(struct plugin_state *state, const char **master) * decrease. */ bool_t map_order(struct plugin_state *state, - const char *domain_name, const char *map_name, + const char *domain_name, const char *map_name, bool_t *map_secure, unsigned int *order) { struct map *map; map = map_data_find_map(state, domain_name, map_name); if (map != NULL) { *order = map->last_changed & 0xffffffff; + *map_secure = map->secure; return TRUE; } else { return FALSE; -- cgit