=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/distopt.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/rdist/distopt.c 1999/02/04 23:18:57 1.5 --- src/usr.bin/rdist/distopt.c 2001/11/19 19:02:15 1.6 *************** *** 1,4 **** ! /* $OpenBSD: distopt.c,v 1.5 1999/02/04 23:18:57 millert Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: distopt.c,v 1.6 2001/11/19 19:02:15 mpech Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 39,45 **** "$From: distopt.c,v 6.10 1996/01/30 01:52:07 mcooper Exp $"; #else static char RCSid[] = ! "$OpenBSD: distopt.c,v 1.5 1999/02/04 23:18:57 millert Exp $"; #endif static char sccsid[] = "@(#)distopt.c"; --- 39,45 ---- "$From: distopt.c,v 6.10 1996/01/30 01:52:07 mcooper Exp $"; #else static char RCSid[] = ! "$OpenBSD: distopt.c,v 1.6 2001/11/19 19:02:15 mpech Exp $"; #endif static char sccsid[] = "@(#)distopt.c"; *************** *** 88,94 **** extern DISTOPTINFO *getdistopt(name) char *name; { ! register int i; for (i = 0; distoptinfo[i].do_name; ++i) if (strcasecmp(name, distoptinfo[i].do_name) == 0) --- 88,94 ---- extern DISTOPTINFO *getdistopt(name) char *name; { ! int i; for (i = 0; distoptinfo[i].do_name; ++i) if (strcasecmp(name, distoptinfo[i].do_name) == 0) *************** *** 107,113 **** opt_t *optptr; int doerrs; { ! register char *string, *optstr; DISTOPTINFO *distopt; int negate; --- 107,113 ---- opt_t *optptr; int doerrs; { ! char *string, *optstr; DISTOPTINFO *distopt; int negate; *************** *** 149,155 **** */ extern char *getdistoptlist() { ! register int i; static char buf[1024]; for (i = 0, buf[0] = CNULL; distoptinfo[i].do_name; ++i) { --- 149,155 ---- */ extern char *getdistoptlist() { ! int i; static char buf[1024]; for (i = 0, buf[0] = CNULL; distoptinfo[i].do_name; ++i) { *************** *** 171,177 **** extern char *getondistoptlist(opts) opt_t opts; { ! register int i; static char buf[1024]; for (i = 0, buf[0] = CNULL; distoptinfo[i].do_name; ++i) { --- 171,177 ---- extern char *getondistoptlist(opts) opt_t opts; { ! int i; static char buf[1024]; for (i = 0, buf[0] = CNULL; distoptinfo[i].do_name; ++i) {