mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Normalize usage output.
This commit is contained in:
parent
b2c4f888fd
commit
5d890e67dd
1 changed files with 4 additions and 2 deletions
|
|
@ -45,8 +45,10 @@ main(int argc, char *argv[])
|
|||
char fhbuf[NI_MAXHOST], fsbuf[NI_MAXSERV], lhbuf[NI_MAXHOST],
|
||||
lsbuf[NI_MAXSERV];
|
||||
|
||||
if (argc != 5)
|
||||
errx(1, "usage: tcpdrop laddr lport faddr fport\n");
|
||||
if (argc != 5) {
|
||||
fprintf(stderr, "usage: tcpdrop laddr lport faddr fport\n");
|
||||
exit(1);
|
||||
}
|
||||
memset(&hints, 0, sizeof(hints));
|
||||
hints.ai_family = AF_UNSPEC;
|
||||
hints.ai_socktype = SOCK_STREAM;
|
||||
|
|
|
|||
Loading…
Reference in a new issue