this file used to try to generate a "struct passwd". Nope, won't work..

This commit is contained in:
deraadt 1993-04-26 06:33:39 +00:00
parent 78a376836d
commit 0c92aec845
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ program YPPASSWDPROG {
} = 100009; } = 100009;
struct passwd { struct x_passwd {
string pw_name<>; /* username */ string pw_name<>; /* username */
string pw_passwd<>; /* encrypted password */ string pw_passwd<>; /* encrypted password */
int pw_uid; /* user id */ int pw_uid; /* user id */
@ -57,7 +57,7 @@ struct passwd {
struct yppasswd { struct yppasswd {
string oldpass<>; /* unencrypted old password */ string oldpass<>; /* unencrypted old password */
passwd newpw; /* new passwd entry */ x_passwd newpw; /* new passwd entry */
}; };