diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-10-25 11:38:29 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-10-25 11:43:20 +0200 |
commit | 49c24e282e21f1b1ac19af1ffa465edd2cea886b (patch) | |
tree | 68e1b3a72b0a864b200c74513ed633c5dc448e7a | |
parent | 0b316d1fd0fca611e9f2e0d5e3a4772b7182c97a (diff) |
Fix a typo
[skip ci]
-rw-r--r-- | pcap-sita.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-sita.c b/pcap-sita.c index 97280c39..c6128a72 100644 --- a/pcap-sita.c +++ b/pcap-sita.c @@ -942,7 +942,7 @@ static int acn_read_n_bytes_with_timeout(pcap_t *handle, int count) { retval = select(fd + 1, &w_fds, NULL, NULL, &tv); if (retval == -1) { /* an error occured !!!!! */ // fprintf(stderr, "error during packet data read\n"); - return -1; /* but we need to return a good indication to prevent unneccessary popups */ + return -1; /* but we need to return a good indication to prevent unnecessary popups */ } else if (retval == 0) { /* timeout occured, so process what we've got sofar and return */ // fprintf(stderr, "timeout during packet data read\n"); return -1; |