[BUG] session: src_conn_cur was returning src_conn_cnt instead
Issue reported by Cory Forsyth and diagnosed by Cyril Bonté.
Just a plain stupid copy-paste of the wrong fetch function call.
diff --git a/src/session.c b/src/session.c
index 2127576..24df936 100644
--- a/src/session.c
+++ b/src/session.c
@@ -2533,7 +2533,7 @@
if (!px)
return 0; /* table not found */
- return acl_fetch_conn_cnt(&px->table, test, stktable_lookup_key(&px->table, key));
+ return acl_fetch_conn_cur(&px->table, test, stktable_lookup_key(&px->table, key));
}
/* set test->i to the cumulated number of sessions in the stksess entry <ts> */