=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/rdist.c,v retrieving revision 1.8 retrieving revision 1.9 diff -c -r1.8 -r1.9 *** src/usr.bin/rdist/rdist.c 2001/07/09 07:04:51 1.8 --- src/usr.bin/rdist/rdist.c 2001/11/19 19:02:15 1.9 *************** *** 1,4 **** ! /* $OpenBSD: rdist.c,v 1.8 2001/07/09 07:04:51 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: rdist.c,v 1.9 2001/11/19 19:02:15 mpech Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 39,45 **** "$From: rdist.c,v 6.65 1995/12/12 00:20:39 mcooper Exp $"; #else static char RCSid[] = ! "$OpenBSD: rdist.c,v 1.8 2001/07/09 07:04:51 deraadt Exp $"; #endif static char sccsid[] = "@(#)main.c 5.1 (Berkeley) 6/6/85"; --- 39,45 ---- "$From: rdist.c,v 6.65 1995/12/12 00:20:39 mcooper Exp $"; #else static char RCSid[] = ! "$OpenBSD: rdist.c,v 1.9 2001/11/19 19:02:15 mpech Exp $"; #endif static char sccsid[] = "@(#)main.c 5.1 (Berkeley) 6/6/85"; *************** *** 88,94 **** char *name; struct namelist **hostlist; { ! register struct namelist *ptr, *new; if (!name || !hostlist) return; --- 88,94 ---- char *name; struct namelist **hostlist; { ! struct namelist *ptr, *new; if (!name || !hostlist) return; *************** *** 112,119 **** char **envp; { struct namelist *hostlist = NULL; ! register int x; ! register char *cp; int cmdargs = 0; int c; --- 112,119 ---- char **envp; { struct namelist *hostlist = NULL; ! int x; ! char *cp; int cmdargs = 0; int c; *************** *** 397,404 **** int nargs; char *args[]; { ! register struct namelist *nl, *prev; ! register char *cp; struct namelist *files, *hosts; struct subcmd *cmds; char *dest; --- 397,404 ---- int nargs; char *args[]; { ! struct namelist *nl, *prev; ! char *cp; struct namelist *files, *hosts; struct subcmd *cmds; char *dest; *************** *** 447,456 **** * Get a list of NAME blocks (mostly for debugging). */ extern char *getnlstr(nl) ! register struct namelist *nl; { static char buf[16384]; ! register int count = 0, len = 0; (void) sprintf(buf, "("); --- 447,456 ---- * Get a list of NAME blocks (mostly for debugging). */ extern char *getnlstr(nl) ! struct namelist *nl; { static char buf[16384]; ! int count = 0, len = 0; (void) sprintf(buf, "(");