aboutsummaryrefslogtreecommitdiff
path: root/lib/seqmap.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/seqmap.c')
-rw-r--r--lib/seqmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/seqmap.c b/lib/seqmap.c
index 777bbd7..fe0aeba 100644
--- a/lib/seqmap.c
+++ b/lib/seqmap.c
@@ -126,7 +126,7 @@ seqmap_close(int dbg, void *data)
}
static int
-seqmap_get(int dbg, void *data, const char *key, char **return_value)
+seqmap_get(int dbg, int dir, void *data, const char *key, char **return_value)
{
struct seqmap *seqmap = data;
size_t i;
@@ -134,7 +134,7 @@ seqmap_get(int dbg, void *data, const char *key, char **return_value)
char *v;
for (i = 0; i < seqmap->nmaps; i++) {
- int rc = eclat_map_get(seqmap->maps[i], p, &v);
+ int rc = eclat_map_get(seqmap->maps[i], dir, p, &v);
free(p);
if (rc != eclat_map_ok) {
debug(dbg, 1, ("map %s returned %s",

Return to:

Send suggestions and report system problems to the System administrator.