Skip to content

Commit

Permalink
core: main - init local variables used for cli param parsing
Browse files Browse the repository at this point in the history
(cherry picked from commit 8a2894c)
  • Loading branch information
miconda committed Mar 6, 2024
1 parent d45c78e commit 500e5fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2083,9 +2083,9 @@ int main(int argc, char **argv)
int c, r;
char *tmp;
int tmp_len;
int port;
int proto;
int aproto;
int port = 5060;
int proto = PROTO_NONE;
int aproto = PROTO_NONE;
char *ahost = NULL;
int aport = 0;
char *options;
Expand Down

0 comments on commit 500e5fa

Please sign in to comment.