-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
43 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ endif | |
# -------- end of user definitions -------- | ||
|
||
MAINTAINER = [email protected] | ||
RELEASE = 1.53 | ||
RELEASE = 1.54 | ||
|
||
.EXPORT_ALL_VARIABLES: | ||
|
||
|
@@ -147,7 +147,7 @@ cleanconfig: | |
rm -f config.h | ||
|
||
clobber: clean | ||
rm -f $(PROGS) config.h version.h config.status | ||
rm -f $(PROGS) config.h version.h config.status config.make | ||
@for i in $(SUBDIRS); do (cd $$i && $(MAKE) clobber) ; done | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
* NET-3 Networking Distribution for the LINUX operating | ||
* system. | ||
* | ||
* Version: $Id: netstat.c,v 1.30 1999/08/28 11:26:08 philip Exp $ | ||
* Version: $Id: netstat.c,v 1.31 1999/11/20 22:49:18 philip Exp $ | ||
* | ||
* Authors: Fred Baumgarten, <[email protected]> | ||
* Fred N. van Kempen, <[email protected]> | ||
|
@@ -705,9 +705,18 @@ static void tcp_do_one(int lnr, const char *line) | |
break; | ||
|
||
case 1: | ||
snprintf(timers, sizeof(timers), _("on (%2.2f/%ld/%d)"), | ||
(double) time_len / HZ, retr, timeout); | ||
break; | ||
|
||
case 2: | ||
snprintf(timers, sizeof(timers), _("on%d (%2.2f/%ld/%d)"), | ||
timer_run,(double) time_len / HZ, retr, timeout); | ||
snprintf(timers, sizeof(timers), _("keepalive (%2.2f/%ld/%d)"), | ||
(double) time_len / HZ, retr, timeout); | ||
break; | ||
|
||
case 3: | ||
snprintf(timers, sizeof(timers), _("timewait (%2.2f/%ld/%d)"), | ||
(double) time_len / HZ, retr, timeout); | ||
break; | ||
|
||
default: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters