diff options
| author | Nalin Dahyabhai <nalin@dahyabhai.net> | 2011-05-13 14:15:26 -0400 |
|---|---|---|
| committer | Nalin Dahyabhai <nalin@dahyabhai.net> | 2011-05-13 14:24:07 -0400 |
| commit | fa0448421e68513b499d28cba4e57e2e77d52bea (patch) | |
| tree | c03a8728d229fbddb47581928d6639011b7e794e /src | |
| parent | 00df92c2fa7d6481f94cd17e0dcabefb04fdf5ad (diff) | |
| download | slapi-nis-fa0448421e68513b499d28cba4e57e2e77d52bea.tar.gz slapi-nis-fa0448421e68513b499d28cba4e57e2e77d52bea.tar.xz slapi-nis-fa0448421e68513b499d28cba4e57e2e77d52bea.zip | |
- the field is called "maps", not "list" now
Diffstat (limited to 'src')
| -rw-r--r-- | src/nis.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -428,14 +428,14 @@ nis_maplist(struct plugin_state *state, cbdata.client_secure = client_secure; map_data_foreach_map(state, domain, nis_maplist_cb, &cbdata); reply_maplist->stat = YP_TRUE; - reply_maplist->list = cbdata.list; - if (reply_maplist->list == NULL) { + reply_maplist->maps = cbdata.list; + if (reply_maplist->maps == NULL) { slapi_log_error(SLAPI_LOG_PLUGIN, state->plugin_desc->spd_id, "maplist(%s) -> (none)\n", domain); } else { - for (list = reply_maplist->list; + for (list = reply_maplist->maps; list != NULL; list = list->next) { slapi_log_error(SLAPI_LOG_PLUGIN, |
