Deleted Added
full compact
yppasswd.x (23037) yppasswd.x (26208)
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *

--- 22 unchanged lines hidden (view full) ---

31 * YP password update protocol
32 * Requires unix authentication
33 */
34
35#ifndef RPC_HDR
36%#ifndef lint
37%/*static char sccsid[] = "from: @(#)yppasswd.x 1.1 87/04/13 Copyr 1987 Sun Micro";*/
38%/*static char sccsid[] = "from: @(#)yppasswd.x 2.1 88/08/01 4.0 RPCSRC";*/
1/*
2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
3 * unrestricted use provided that this legend is included on all tape
4 * media and as a part of the software program in whole or part. Users
5 * may copy or modify Sun RPC without charge, but are not authorized
6 * to license or distribute it to anyone else except as part of a product or
7 * program developed by the user.
8 *

--- 22 unchanged lines hidden (view full) ---

31 * YP password update protocol
32 * Requires unix authentication
33 */
34
35#ifndef RPC_HDR
36%#ifndef lint
37%/*static char sccsid[] = "from: @(#)yppasswd.x 1.1 87/04/13 Copyr 1987 Sun Micro";*/
38%/*static char sccsid[] = "from: @(#)yppasswd.x 2.1 88/08/01 4.0 RPCSRC";*/
39%static char rcsid[] = "$Id$";
39%static char rcsid[] = "$Id: yppasswd.x,v 1.1 1994/08/04 19:01:57 wollman Exp $";
40%#endif /* not lint */
41#endif
42
43program YPPASSWDPROG {
44 version YPPASSWDVERS {
45 /*
46 * Update my passwd entry
47 */

--- 14 unchanged lines hidden (view full) ---

62};
63
64struct yppasswd {
65 string oldpass<>; /* unencrypted old password */
66 x_passwd newpw; /* new passwd entry */
67};
68
69
40%#endif /* not lint */
41#endif
42
43program YPPASSWDPROG {
44 version YPPASSWDVERS {
45 /*
46 * Update my passwd entry
47 */

--- 14 unchanged lines hidden (view full) ---

62};
63
64struct yppasswd {
65 string oldpass<>; /* unencrypted old password */
66 x_passwd newpw; /* new passwd entry */
67};
68
69
70#ifdef RPC_HDR
71%#include <sys/cdefs.h>
72%extern int _yppasswd __P(( char * , struct x_passwd * ));
73%#define yppasswd(x,y) _yppasswd(x,y)
74#endif