diff options
| author | Nalin Dahyabhai <nalin.dahyabhai@pobox.com> | 2008-06-10 11:49:27 -0400 |
|---|---|---|
| committer | Nalin Dahyabhai <nalin.dahyabhai@pobox.com> | 2008-06-10 11:49:27 -0400 |
| commit | 6a909056a16bae76fb367b50035f2f2e62fc6293 (patch) | |
| tree | d6a531a3d2e3dad82b00178eed56646204cfb51f | |
| parent | b6f6ae3255c861f71917d1c166bdb4b411256c1d (diff) | |
- compensate for changed function signatures elsewhere
| -rw-r--r-- | src/format.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/format.c b/src/format.c index d706bd4..aabba07 100644 --- a/src/format.c +++ b/src/format.c @@ -679,7 +679,8 @@ format_referred(struct plugin_state *state, Slapi_PBlock *pb, Slapi_Entry *e, /* Retrieve the map-specific paramters. */ map_filter = NULL; map_bases = NULL; - backend_get_map_config(state, domain, argv[1], &map_bases, &map_filter); + backend_get_map_config(state, domain, argv[1], NULL, + &map_bases, &map_filter); if (map_filter == NULL) { map_filter = "(objectClass=*)"; } |
