Skip to content

Commit

Permalink
clientmgr: is_known_address() logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
christf committed Dec 11, 2017
1 parent 02974b6 commit 63bf9bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clientmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ bool clientmgr_is_known_address(clientmgr_ctx *ctx, struct in6_addr *address) {
}
}
}
printf(" => no match found.\n");
return false;
}
printf(" => no match found.\n");
return false;
}

/** Get a client or create a new, empty one.
Expand Down

0 comments on commit 63bf9bb

Please sign in to comment.