From f550d664bb4fe24a5eeecc8b02b01e0fea50933c Mon Sep 17 00:00:00 2001 From: Apple Date: Tue, 15 Aug 2006 02:55:30 +0000 Subject: [PATCH] network_cmds-245.15.tar.gz --- domainname.tproj/Makefile.dist | 2 +- domainname.tproj/domainname.c | 2 +- ipsec/Makefile.postamble | 2 +- netstat.tproj/inet.c | 10 ++++++ nfsd.tproj/nfsd.c | 10 ++++-- rarpd.tproj/Makefile.dist | 2 +- rarpd.tproj/rarpd.8 | 2 +- rarpd.tproj/rarpd.c | 2 +- rlogin.tproj/krcmd.c | 2 +- spray.tproj/Makefile.dist | 2 +- spray.tproj/spray.c | 2 +- telnet.tproj/commands.c | 42 +++++++++++++++----------- telnet.tproj/telnet.1 | 22 +++++--------- timed.tproj/timed.tproj/acksend.c | 2 +- timed.tproj/timed.tproj/byteorder.c | 2 +- timed.tproj/timed.tproj/candidate.c | 2 +- timed.tproj/timed.tproj/cksum.c | 2 +- timed.tproj/timed.tproj/correct.c | 2 +- timed.tproj/timed.tproj/globals.h | 2 +- timed.tproj/timed.tproj/master.c | 2 +- timed.tproj/timed.tproj/measure.c | 2 +- timed.tproj/timed.tproj/networkdelta.c | 2 +- timed.tproj/timed.tproj/slave.c | 2 +- timed.tproj/timed.tproj/timed.c | 2 +- timed.tproj/timedc.tproj/cmds.c | 2 +- timed.tproj/timedc.tproj/timedc.c | 2 +- traceroute.tproj/gnuc.h | 2 +- traceroute.tproj/ifaddrlist.h | 2 +- ypbind.tproj/Makefile.dist | 2 +- ypbind.tproj/ypbind.c | 2 +- ypcat.tproj/Makefile.dist | 2 +- ypcat.tproj/ypcat.1 | 2 +- ypcat.tproj/ypcat.c | 2 +- ypmatch.tproj/Makefile.dist | 2 +- ypmatch.tproj/ypmatch.1 | 2 +- ypmatch.tproj/ypmatch.c | 2 +- yppoll.tproj/Makefile.dist | 2 +- yppoll.tproj/yppoll.8 | 2 +- yppoll.tproj/yppoll.c | 2 +- ypset.tproj/Makefile.dist | 2 +- ypwhich.tproj/Makefile.dist | 2 +- ypwhich.tproj/ypwhich.1 | 2 +- ypwhich.tproj/ypwhich.c | 2 +- 43 files changed, 90 insertions(+), 72 deletions(-) diff --git a/domainname.tproj/Makefile.dist b/domainname.tproj/Makefile.dist index 755ae0d..7f04161 100644 --- a/domainname.tproj/Makefile.dist +++ b/domainname.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.3 (Berkeley) 5/11/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:57:38 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:57:38 wsanchez Exp $ PROG= domainname diff --git a/domainname.tproj/domainname.c b/domainname.tproj/domainname.c index a229731..4e0eb96 100644 --- a/domainname.tproj/domainname.c +++ b/domainname.tproj/domainname.c @@ -51,7 +51,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: domainname.c,v 1.1.1.1 1999/05/02 03:57:38 wsanchez Exp $"; +static char rcsid[] = "$Id: domainname.c,v 1.1 1999/05/02 03:57:38 wsanchez Exp $"; #endif /* not lint */ #include diff --git a/ipsec/Makefile.postamble b/ipsec/Makefile.postamble index 1fc2bf3..09dfa14 100644 --- a/ipsec/Makefile.postamble +++ b/ipsec/Makefile.postamble @@ -101,4 +101,4 @@ install-man-page: install -d "$(DSTROOT)/usr/share/man/man3" install -c -m 644 ipsec_set_policy.3 "$(DSTROOT)/usr/share/man/man3/ipsec_set_policy.3" - install -c -m 644 ipsec_strerror.3 "$(DSTROOT)/usr/share/man/man3/ipsec_strerror.3" + install -c -m 644 ipsec_strerror.3 "$(DSTROOT)/usr/share/man/man3/ipsec_strerror.3" diff --git a/netstat.tproj/inet.c b/netstat.tproj/inet.c index 53899cb..8644d53 100644 --- a/netstat.tproj/inet.c +++ b/netstat.tproj/inet.c @@ -521,6 +521,16 @@ tcp_stats(u_long off , char *name, int af ) p(tcps_keepdrops, "\t\t%lu connection%s dropped by keepalive\n"); p(tcps_predack, "\t%lu correct ACK header prediction%s\n"); p(tcps_preddat, "\t%lu correct data packet header prediction%s\n"); + p(tcps_sack_recovery_episode, "\t%lu SACK recovery episode%s\n"); + p(tcps_sack_rexmits, + "\t%lu segment rexmit%s in SACK recovery episodes\n"); + p(tcps_sack_rexmit_bytes, + "\t%lu byte rexmit%s in SACK recovery episodes\n"); + p(tcps_sack_rcv_blocks, + "\t%lu SACK option%s (SACK blocks) received\n"); + p(tcps_sack_send_blocks, "\t%lu SACK option%s (SACK blocks) sent\n"); + p1a(tcps_sack_sboverflow, "\t%lu SACK scoreboard overflow\n"); + #undef p #undef p1a #undef p2 diff --git a/nfsd.tproj/nfsd.c b/nfsd.tproj/nfsd.c index a40ac6a..3a97b64 100644 --- a/nfsd.tproj/nfsd.c +++ b/nfsd.tproj/nfsd.c @@ -374,8 +374,14 @@ main(argc, argv, envp) inetaddr.sin_len = sizeof(inetaddr); if (bind(sock, (struct sockaddr *)&inetaddr, sizeof(inetaddr)) < 0) { - syslog(LOG_ERR, "can't bind udp addr"); - exit(1); + /* socket may still be lingering from previous incarnation */ + /* wait a few seconds and try again */ + sleep(6); + if (bind(sock, + (struct sockaddr *)&inetaddr, sizeof(inetaddr)) < 0) { + syslog(LOG_ERR, "can't bind udp addr"); + exit(1); + } } if (!pmap_set(RPCPROG_NFS, 2, IPPROTO_UDP, NFS_PORT) || !pmap_set(RPCPROG_NFS, 3, IPPROTO_UDP, NFS_PORT)) { diff --git a/rarpd.tproj/Makefile.dist b/rarpd.tproj/Makefile.dist index 2c02ca5..6499b1f 100644 --- a/rarpd.tproj/Makefile.dist +++ b/rarpd.tproj/Makefile.dist @@ -1,4 +1,4 @@ -# @(#) $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:57:59 wsanchez Exp $ +# @(#) $Id: Makefile.dist,v 1.1 1999/05/02 03:57:59 wsanchez Exp $ PROG= rarpd SRCS= rarpd.c diff --git a/rarpd.tproj/rarpd.8 b/rarpd.tproj/rarpd.8 index f090c47..39ecff6 100644 --- a/rarpd.tproj/rarpd.8 +++ b/rarpd.tproj/rarpd.8 @@ -17,7 +17,7 @@ .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED .\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -.\" @(#) $Id: rarpd.8,v 1.1.1.1 1999/05/02 03:57:59 wsanchez Exp $ +.\" @(#) $Id: rarpd.8,v 1.1 1999/05/02 03:57:59 wsanchez Exp $ .\" .Dd October 26, 1990 .Dt RARPD 8 diff --git a/rarpd.tproj/rarpd.c b/rarpd.tproj/rarpd.c index 890be78..036bffa 100644 --- a/rarpd.tproj/rarpd.c +++ b/rarpd.tproj/rarpd.c @@ -49,7 +49,7 @@ char copyright[] = #ifndef lint static char rcsid[] = -"@(#) $Id: rarpd.c,v 1.1.1.1 1999/05/02 03:57:59 wsanchez Exp $"; +"@(#) $Id: rarpd.c,v 1.1 1999/05/02 03:57:59 wsanchez Exp $"; #endif diff --git a/rlogin.tproj/krcmd.c b/rlogin.tproj/krcmd.c index 8f7710e..d6acb22 100644 --- a/rlogin.tproj/krcmd.c +++ b/rlogin.tproj/krcmd.c @@ -56,7 +56,7 @@ /* - * $Source: /cvs/root/network_cmds/rlogin.tproj/krcmd.c,v $ + * $Source: /Volumes/george/fs-svn/network_cmds/rlogin.tproj/krcmd.c,v $ * $Header: /mit/kerberos/ucb/mit/kcmd/RCS/krcmd.c,v 5.1 * 89/07/25 15:38:44 kfall Exp Locker: kfall $ * static char *rcsid_kcmd_c = diff --git a/spray.tproj/Makefile.dist b/spray.tproj/Makefile.dist index 87c00aa..d90bce5 100644 --- a/spray.tproj/Makefile.dist +++ b/spray.tproj/Makefile.dist @@ -1,4 +1,4 @@ -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:58:27 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:58:27 wsanchez Exp $ PROG= spray NOMAN= diff --git a/spray.tproj/spray.c b/spray.tproj/spray.c index 72d9c3e..c8e24dd 100644 --- a/spray.tproj/spray.c +++ b/spray.tproj/spray.c @@ -50,7 +50,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: spray.c,v 1.1.1.1 1999/05/02 03:58:27 wsanchez Exp $ + * $Id: spray.c,v 1.1 1999/05/02 03:58:27 wsanchez Exp $ */ #include diff --git a/telnet.tproj/commands.c b/telnet.tproj/commands.c index 47a7500..bc87448 100644 --- a/telnet.tproj/commands.c +++ b/telnet.tproj/commands.c @@ -1599,7 +1599,7 @@ env_cmd(int argc, char *argv[]) argv[1]); return 0; } - if (c->narg + 2 != argc) { + if (c->narg + 2 != argc && strcasecmp(argv[1],"define")==0 && c->narg + 1 != argc) { fprintf(stderr, "Need %s%d argument%s to 'environ %s' command. 'environ ?' for help.\n", c->narg < argc + 2 ? "only " : "", @@ -1636,19 +1636,20 @@ env_find(const unsigned char *var) void env_init(void) { - extern char **environ; - char **epp, *cp; + char *ev; struct env_lst *ep; + int i; - for (epp = environ; *epp; epp++) { - if ((cp = strchr(*epp, '='))) { - *cp = '\0'; - ep = env_define((unsigned char *)*epp, - (unsigned char *)cp+1); - ep->export = 0; - *cp = '='; - } + const char *safe_vars[]= + {"USER", "PRINTER", "DISPLAY", "TERM", "COLUMNS", "LINES"}; + + for(i=0;iexport=0; + } } + /* * Special case for DISPLAY variable. If it is ":0.0" or * "unix:0.0", we have to get rid of "unix" and insert our @@ -1658,7 +1659,7 @@ env_init(void) && ((*ep->value == ':') || (strncmp((char *)ep->value, "unix:", 5) == 0))) { char hbuf[256+1]; - char *cp2 = strchr((char *)ep->value, ':'); + char *cp, *cp2 = strchr((char *)ep->value, ':'); gethostname(hbuf, 256); hbuf[256] = '\0'; @@ -1683,6 +1684,7 @@ env_init(void) struct env_lst * env_define(const unsigned char *var, unsigned char *value) { + char *ev; struct env_lst *ep; if ((ep = env_find(var))) { @@ -1698,10 +1700,16 @@ env_define(const unsigned char *var, unsigned char *value) if (ep->next) ep->next->prev = ep; } - ep->welldefined = opt_welldefined(var); + + ep->welldefined = opt_welldefined((const char *)var); ep->export = 1; - ep->var = strdup(var); - ep->value = strdup(value); + ep->var = (unsigned char *)strdup((const char *)var); + + if(value) + ep->value = (unsigned char *)strdup((const char *)value); + else if(ev=getenv((const char *)var)) + ep->value = (unsigned char *)strdup(ev); + else ep->value = (unsigned char *)strdup(""); return(ep); } @@ -1747,7 +1755,7 @@ env_send(unsigned char *var) if (my_state_is_wont(TELOPT_NEW_ENVIRON) #ifdef OLD_ENVIRON - && my_state_is_wont(TELOPT_OLD_ENVIRON) + && my_state_is_wont(TELOPT_OLD_ENVIRON) #endif ) { fprintf(stderr, @@ -1772,7 +1780,7 @@ env_list(void) struct env_lst *ep; for (ep = envlisthead.next; ep; ep = ep->next) { - printf("%c %-20s %s\n", ep->export ? '*' : ' ', + printf("%c %-20s %s\n", ep->export ? '*' : ' ', ep->var, ep->value); } } diff --git a/telnet.tproj/telnet.1 b/telnet.tproj/telnet.1 index 1ac6c42..bb9717c 100644 --- a/telnet.tproj/telnet.1 +++ b/telnet.tproj/telnet.1 @@ -442,29 +442,23 @@ command is used to manipulate the variables that may be sent through the .Dv TELNET ENVIRON option. -The initial set of variables is taken from the users -environment, with only the -.Ev DISPLAY -and -.Ev PRINTER -variables being exported by default. -The -.Ev USER -variable is also exported if the -.Fl a -or -.Fl l -options are used. +The initial set of variables is populated with the +contents of the following environment variables, if +present: +.Ev USER , PRINTER , DISPLAY , TERM , COLUMNS , LINES. + +Only the first three are exported, by default. .Pp Valid arguments for the .Ic environ command are: .Bl -tag -width Fl -.It Ic define Ar variable value +.It Ic define Ar variable [value] Define the variable .Ar variable to have a value of .Ar value . +If value is empty, the value is taken from the environment variable. Any variables defined by this command are automatically exported. The .Ar value diff --git a/timed.tproj/timed.tproj/acksend.c b/timed.tproj/timed.tproj/acksend.c index af1aea0..f4ac330 100644 --- a/timed.tproj/timed.tproj/acksend.c +++ b/timed.tproj/timed.tproj/acksend.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)acksend.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/byteorder.c b/timed.tproj/timed.tproj/byteorder.c index 97bb911..59a5e8c 100644 --- a/timed.tproj/timed.tproj/byteorder.c +++ b/timed.tproj/timed.tproj/byteorder.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)byteorder.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/candidate.c b/timed.tproj/timed.tproj/candidate.c index a271db5..f3d2bab 100644 --- a/timed.tproj/timed.tproj/candidate.c +++ b/timed.tproj/timed.tproj/candidate.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)candidate.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/cksum.c b/timed.tproj/timed.tproj/cksum.c index e50e438..0b36514 100644 --- a/timed.tproj/timed.tproj/cksum.c +++ b/timed.tproj/timed.tproj/cksum.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)cksum.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include diff --git a/timed.tproj/timed.tproj/correct.c b/timed.tproj/timed.tproj/correct.c index f092bca..be98677 100644 --- a/timed.tproj/timed.tproj/correct.c +++ b/timed.tproj/timed.tproj/correct.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)correct.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/globals.h b/timed.tproj/timed.tproj/globals.h index 82cfc53..b3452fc 100644 --- a/timed.tproj/timed.tproj/globals.h +++ b/timed.tproj/timed.tproj/globals.h @@ -57,7 +57,7 @@ */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include diff --git a/timed.tproj/timed.tproj/master.c b/timed.tproj/timed.tproj/master.c index ddd3215..f4dbd7d 100644 --- a/timed.tproj/timed.tproj/master.c +++ b/timed.tproj/timed.tproj/master.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)master.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/measure.c b/timed.tproj/timed.tproj/measure.c index 6b809b2..a943ef6 100644 --- a/timed.tproj/timed.tproj/measure.c +++ b/timed.tproj/timed.tproj/measure.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)measure.c 8.2 (Berkeley) 3/26/95"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/networkdelta.c b/timed.tproj/timed.tproj/networkdelta.c index 51576f6..0556bbe 100644 --- a/timed.tproj/timed.tproj/networkdelta.c +++ b/timed.tproj/timed.tproj/networkdelta.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)networkdelta.c 8.3 (Berkeley) 4/27/95"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/slave.c b/timed.tproj/timed.tproj/slave.c index 0b72058..657d23d 100644 --- a/timed.tproj/timed.tproj/slave.c +++ b/timed.tproj/timed.tproj/slave.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)slave.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "globals.h" diff --git a/timed.tproj/timed.tproj/timed.c b/timed.tproj/timed.tproj/timed.c index 01fa981..0079b16 100644 --- a/timed.tproj/timed.tproj/timed.c +++ b/timed.tproj/timed.tproj/timed.c @@ -65,7 +65,7 @@ static char sccsid[] = "@(#)timed.c 8.2 (Berkeley) 3/26/95"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif /* sgi */ #define TSPTYPES diff --git a/timed.tproj/timedc.tproj/cmds.c b/timed.tproj/timedc.tproj/cmds.c index a844190..80995ec 100644 --- a/timed.tproj/timedc.tproj/cmds.c +++ b/timed.tproj/timedc.tproj/cmds.c @@ -59,7 +59,7 @@ static char sccsid[] = "@(#)cmds.c 8.2 (Berkeley) 3/26/95"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "timedc.h" diff --git a/timed.tproj/timedc.tproj/timedc.c b/timed.tproj/timedc.tproj/timedc.c index 63e2884..49742a4 100644 --- a/timed.tproj/timedc.tproj/timedc.c +++ b/timed.tproj/timedc.tproj/timedc.c @@ -65,7 +65,7 @@ static char sccsid[] = "@(#)timedc.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #ifdef sgi -#ident "$Revision: 1.1.1.1 $" +#ident "$Revision: 1.1 $" #endif #include "timedc.h" diff --git a/traceroute.tproj/gnuc.h b/traceroute.tproj/gnuc.h index b7239bb..f13c0be 100644 --- a/traceroute.tproj/gnuc.h +++ b/traceroute.tproj/gnuc.h @@ -1,4 +1,4 @@ -/* @(#) $Header: /cvs/root/network_cmds/traceroute.tproj/gnuc.h,v 1.2 2004/08/08 00:27:54 lindak Exp $ (LBL) */ +/* @(#) $Header: /Volumes/george/fs-svn/network_cmds/traceroute.tproj/gnuc.h,v 1.2 2004/08/08 00:27:54 lindak Exp $ (LBL) */ /* Define __P() macro, if necessary */ #ifndef __P diff --git a/traceroute.tproj/ifaddrlist.h b/traceroute.tproj/ifaddrlist.h index 877cb4b..8b7dc99 100644 --- a/traceroute.tproj/ifaddrlist.h +++ b/traceroute.tproj/ifaddrlist.h @@ -18,7 +18,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: /cvs/root/network_cmds/traceroute.tproj/ifaddrlist.h,v 1.2 2004/08/08 00:27:54 lindak Exp $ (LBL) + * @(#) $Header: /Volumes/george/fs-svn/network_cmds/traceroute.tproj/ifaddrlist.h,v 1.2 2004/08/08 00:27:54 lindak Exp $ (LBL) */ struct ifaddrlist { diff --git a/ypbind.tproj/Makefile.dist b/ypbind.tproj/Makefile.dist index 901e614..0fad040 100644 --- a/ypbind.tproj/Makefile.dist +++ b/ypbind.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:59:00 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:59:00 wsanchez Exp $ PROG= ypbind NOMAN= diff --git a/ypbind.tproj/ypbind.c b/ypbind.tproj/ypbind.c index bad58c0..ca722d2 100644 --- a/ypbind.tproj/ypbind.c +++ b/ypbind.tproj/ypbind.c @@ -54,7 +54,7 @@ */ #ifndef LINT -static char rcsid[] = "$Id: ypbind.c,v 1.1.1.1 1999/05/02 03:59:00 wsanchez Exp $"; +static char rcsid[] = "$Id: ypbind.c,v 1.1 1999/05/02 03:59:00 wsanchez Exp $"; #endif #include diff --git a/ypcat.tproj/Makefile.dist b/ypcat.tproj/Makefile.dist index 55b8f72..47a9a18 100644 --- a/ypcat.tproj/Makefile.dist +++ b/ypcat.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:59:01 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:59:01 wsanchez Exp $ PROG= ypcat diff --git a/ypcat.tproj/ypcat.1 b/ypcat.tproj/ypcat.1 index 529b3ee..1ed0a55 100644 --- a/ypcat.tproj/ypcat.1 +++ b/ypcat.tproj/ypcat.1 @@ -26,7 +26,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ypcat.1,v 1.1.1.1 1999/05/02 03:59:01 wsanchez Exp $ +.\" $Id: ypcat.1,v 1.1 1999/05/02 03:59:01 wsanchez Exp $ .\" .Dd December 3, 1993 .Dt YPCAT 1 diff --git a/ypcat.tproj/ypcat.c b/ypcat.tproj/ypcat.c index 72e4e45..6ab38ab 100644 --- a/ypcat.tproj/ypcat.c +++ b/ypcat.tproj/ypcat.c @@ -54,7 +54,7 @@ */ #ifndef LINT -static char rcsid[] = "$Id: ypcat.c,v 1.1.1.1 1999/05/02 03:59:01 wsanchez Exp $"; +static char rcsid[] = "$Id: ypcat.c,v 1.1 1999/05/02 03:59:01 wsanchez Exp $"; #endif #include diff --git a/ypmatch.tproj/Makefile.dist b/ypmatch.tproj/Makefile.dist index fa9c3ba..20c7617 100644 --- a/ypmatch.tproj/Makefile.dist +++ b/ypmatch.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:59:02 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:59:02 wsanchez Exp $ PROG= ypmatch diff --git a/ypmatch.tproj/ypmatch.1 b/ypmatch.tproj/ypmatch.1 index f5e76ec..43d8721 100644 --- a/ypmatch.tproj/ypmatch.1 +++ b/ypmatch.tproj/ypmatch.1 @@ -26,7 +26,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ypmatch.1,v 1.1.1.1 1999/05/02 03:59:02 wsanchez Exp $ +.\" $Id: ypmatch.1,v 1.1 1999/05/02 03:59:02 wsanchez Exp $ .\" .Dd December 3, 1993 .Dt YPMATCH 1 diff --git a/ypmatch.tproj/ypmatch.c b/ypmatch.tproj/ypmatch.c index 5f78260..b981157 100644 --- a/ypmatch.tproj/ypmatch.c +++ b/ypmatch.tproj/ypmatch.c @@ -54,7 +54,7 @@ */ #ifndef LINT -static char rcsid[] = "$Id: ypmatch.c,v 1.1.1.1 1999/05/02 03:59:02 wsanchez Exp $"; +static char rcsid[] = "$Id: ypmatch.c,v 1.1 1999/05/02 03:59:02 wsanchez Exp $"; #endif #include diff --git a/yppoll.tproj/Makefile.dist b/yppoll.tproj/Makefile.dist index 2274b91..e3469ac 100644 --- a/yppoll.tproj/Makefile.dist +++ b/yppoll.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:59:02 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:59:02 wsanchez Exp $ PROG= yppoll MAN8= yppoll.0 diff --git a/yppoll.tproj/yppoll.8 b/yppoll.tproj/yppoll.8 index db17f7b..16472f1 100644 --- a/yppoll.tproj/yppoll.8 +++ b/yppoll.tproj/yppoll.8 @@ -25,7 +25,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: yppoll.8,v 1.1.1.1 1999/05/02 03:59:03 wsanchez Exp $ +.\" $Id: yppoll.8,v 1.1 1999/05/02 03:59:03 wsanchez Exp $ .\" .Dd August 18, 1994 .Dt YPPOLL 8 diff --git a/yppoll.tproj/yppoll.c b/yppoll.tproj/yppoll.c index 5f1ddc5..f107840 100644 --- a/yppoll.tproj/yppoll.c +++ b/yppoll.tproj/yppoll.c @@ -56,7 +56,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: yppoll.c,v 1.1.1.1 1999/05/02 03:59:03 wsanchez Exp $"; +static char rcsid[] = "$Id: yppoll.c,v 1.1 1999/05/02 03:59:03 wsanchez Exp $"; #endif /* not lint */ #include diff --git a/ypset.tproj/Makefile.dist b/ypset.tproj/Makefile.dist index 1cb38ca..1f141de 100644 --- a/ypset.tproj/Makefile.dist +++ b/ypset.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:59:06 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:59:06 wsanchez Exp $ PROG= ypset NOMAN= diff --git a/ypwhich.tproj/Makefile.dist b/ypwhich.tproj/Makefile.dist index 9837ebe..35be32f 100644 --- a/ypwhich.tproj/Makefile.dist +++ b/ypwhich.tproj/Makefile.dist @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.8 (Berkeley) 7/28/90 -# $Id: Makefile.dist,v 1.1.1.1 1999/05/02 03:59:06 wsanchez Exp $ +# $Id: Makefile.dist,v 1.1 1999/05/02 03:59:06 wsanchez Exp $ PROG= ypwhich diff --git a/ypwhich.tproj/ypwhich.1 b/ypwhich.tproj/ypwhich.1 index 5c466f2..7bd05c9 100644 --- a/ypwhich.tproj/ypwhich.1 +++ b/ypwhich.tproj/ypwhich.1 @@ -27,7 +27,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: ypwhich.1,v 1.1.1.1 1999/05/02 03:59:06 wsanchez Exp $ +.\" $Id: ypwhich.1,v 1.1 1999/05/02 03:59:06 wsanchez Exp $ .\" .Dd February 23, 1994 .Dt YPWHICH 1 diff --git a/ypwhich.tproj/ypwhich.c b/ypwhich.tproj/ypwhich.c index 523e1d0..ccc38ac 100644 --- a/ypwhich.tproj/ypwhich.c +++ b/ypwhich.tproj/ypwhich.c @@ -54,7 +54,7 @@ */ #ifndef LINT -static char rcsid[] = "$Id: ypwhich.c,v 1.1.1.1 1999/05/02 03:59:06 wsanchez Exp $"; +static char rcsid[] = "$Id: ypwhich.c,v 1.1 1999/05/02 03:59:06 wsanchez Exp $"; #endif #include -- 2.45.2