Skip to content

Commit

Permalink
proto_ipsec: Fix compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed May 11, 2024
1 parent 3871654 commit 918318e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/proto_ipsec/proto_ipsec.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ static int proto_ipsec_add_listeners(void)
si->flags |= SI_INTERNAL;
udp = new_sock_info(si);
if (!udp) {
LM_ERR("could not add UDP listening sucket for %s:%hu\n",
LM_ERR("could not add UDP listening sucket for %s:%d\n",
si->name, si->port);
return -1;
}
Expand All @@ -326,7 +326,7 @@ static int proto_ipsec_add_listeners(void)
si->flags |= SI_REUSEPORT;
tcp = new_sock_info(si);
if (!tcp) {
LM_ERR("could not add TCP listening sucket for %s:%hu\n",
LM_ERR("could not add TCP listening sucket for %s:%d\n",
si->name, si->port);
return -1;
}
Expand Down

0 comments on commit 918318e

Please sign in to comment.