bool map_dst_valid(REQUEST *request, value_pair_map_t const *map);
-size_t map_print(char *buffer, size_t bufsize, value_pair_map_t const *map);
+size_t map_prints(char *buffer, size_t bufsize, value_pair_map_t const *map);
void map_debug_log(REQUEST *request, value_pair_map_t const *map,
VALUE_PAIR const *vp) CC_HINT(nonnull(1, 2));
* @param[in] map to print
* @return the size of the string printed
*/
-size_t map_print(char *buffer, size_t bufsize, value_pair_map_t const *map)
+size_t map_prints(char *buffer, size_t bufsize, value_pair_map_t const *map)
{
size_t len;
char *p = buffer;
group_name[this->type]);
for (map = g->map; map != NULL; map = map->next) {
- map_print(buffer, sizeof(buffer), map);
+ map_prints(buffer, sizeof(buffer), map);
DEBUG("%.*s%s", depth + 1, modcall_spaces, buffer);
}
p += len;
}
- len = map_print(p, end - p, c->data.map);
+ len = map_prints(p, end - p, c->data.map);
p += len;
#if 0
*(p++) = ']';