summaryrefslogtreecommitdiffstats
path: root/src/peer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/peer.c')
-rw-r--r--src/peer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peer.c b/src/peer.c
index a20e0c8..c3279fb 100644
--- a/src/peer.c
+++ b/src/peer.c
@@ -381,7 +381,7 @@ bool fastd_peer_may_connect(fastd_context_t *ctx, fastd_peer_t *peer) {
fastd_peer_group_t *group;
for (group = peer->group; group; group = group->parent) {
- if (!group->conf->max_connections)
+ if (group->conf->max_connections < 0)
continue;
if (count_established_group_peers(ctx, group) >= group->conf->max_connections)