=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/chpass/Attic/pw_yp.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/chpass/Attic/pw_yp.c 1999/12/15 21:31:42 1.12 --- src/usr.bin/chpass/Attic/pw_yp.c 2001/11/19 19:02:13 1.13 *************** *** 1,4 **** ! /* $OpenBSD: pw_yp.c,v 1.12 1999/12/15 21:31:42 deraadt Exp $ */ /* $NetBSD: pw_yp.c,v 1.5 1995/03/26 04:55:33 glass Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: pw_yp.c,v 1.13 2001/11/19 19:02:13 mpech Exp $ */ /* $NetBSD: pw_yp.c,v 1.5 1995/03/26 04:55:33 glass Exp $ */ /* *************** *** 37,43 **** #if 0 static char sccsid[] = "@(#)pw_yp.c 1.0 2/2/93"; #else ! static char rcsid[] = "$OpenBSD: pw_yp.c,v 1.12 1999/12/15 21:31:42 deraadt Exp $"; #endif #endif /* not lint */ --- 37,43 ---- #if 0 static char sccsid[] = "@(#)pw_yp.c 1.0 2/2/93"; #else ! static char rcsid[] = "$OpenBSD: pw_yp.c,v 1.13 2001/11/19 19:02:13 mpech Exp $"; #endif #endif /* not lint */ *************** *** 177,183 **** static char * pwskip(p) ! register char *p; { while (*p && *p != ':' && *p != '\n') ++p; --- 177,183 ---- static char * pwskip(p) ! char *p; { while (*p && *p != ':' && *p != '\n') ++p; *************** *** 191,197 **** struct passwd *pwent; char *line; { ! register char *p = line; pwent->pw_passwd = "*"; pwent->pw_uid = 0; --- 191,197 ---- struct passwd *pwent; char *line; { ! char *p = line; pwent->pw_passwd = "*"; pwent->pw_uid = 0;