Typo in usec precision
This commit is contained in:
parent
0ad4d0dc03
commit
13437c1076
1 changed files with 1 additions and 1 deletions
2
echoc.c
2
echoc.c
|
@ -142,7 +142,7 @@ main(int argc, char *argv[])
|
||||||
if (dropped >= THRESHOLD) {
|
if (dropped >= THRESHOLD) {
|
||||||
tm = localtime((time_t *)&tv.tv_sec);
|
tm = localtime((time_t *)&tv.tv_sec);
|
||||||
strftime(buf, sizeof(buf), "%F %T", tm);
|
strftime(buf, sizeof(buf), "%F %T", tm);
|
||||||
printf("%s.%02ld: connection is back\n",
|
printf("%s.%06ld: connection is back\n",
|
||||||
buf, tv.tv_usec);
|
buf, tv.tv_usec);
|
||||||
if (verbose)
|
if (verbose)
|
||||||
printf("dropped %d paquets\n", dropped);
|
printf("dropped %d paquets\n", dropped);
|
||||||
|
|
Loading…
Add table
Reference in a new issue