diff options
author | Raja Andra <Rajagopal.Andra@Sun.COM> | 2009-12-06 01:39:21 -0800 |
---|---|---|
committer | Raja Andra <Rajagopal.Andra@Sun.COM> | 2009-12-06 01:39:21 -0800 |
commit | 36e852a172cba914383d7341c988128b2c667fbd (patch) | |
tree | 6cf9fe61b54ffa5f49f74f8b3ee20249279d5efe /usr/src/lib/passwdutil/files_attr.c | |
parent | 560e0ee2bb5791b5efe2cbdc74d0a76f06dbd84d (diff) | |
download | illumos-gate-36e852a172cba914383d7341c988128b2c667fbd.tar.gz |
6874309 Remove NIS+ from Solaris
Diffstat (limited to 'usr/src/lib/passwdutil/files_attr.c')
-rw-r--r-- | usr/src/lib/passwdutil/files_attr.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/usr/src/lib/passwdutil/files_attr.c b/usr/src/lib/passwdutil/files_attr.c index b7d128cd20..2a8ac5c94f 100644 --- a/usr/src/lib/passwdutil/files_attr.c +++ b/usr/src/lib/passwdutil/files_attr.c @@ -49,8 +49,7 @@ int files_getattr(char *name, attrlist *item, pwu_repository_t *rep); int files_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, void **buf); int files_update(attrlist *items, pwu_repository_t *rep, void *buf); -int files_putpwnam(char *name, char *oldpw, char *dummy, - pwu_repository_t *rep, void *buf); +int files_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, void *buf); int files_user_to_authenticate(char *name, pwu_repository_t *rep, char **auth_user, int *privileged); @@ -1086,16 +1085,14 @@ passwd_exit: } /* - * files_putpwnam(name, oldpw, dummy, rep, buf) + * files_putpwnam(name, oldpw, rep, buf) * * store the password attributes contained in "buf" in /etc/passwd and - * /etc/shadow. The dummy parameter is a placeholder for NIS+ - * updates where the "oldrpc" password is passed. + * /etc/shadow. */ /*ARGSUSED*/ int -files_putpwnam(char *name, char *oldpw, char *dummy, - pwu_repository_t *rep, void *buf) +files_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, void *buf) { struct pwbuf *pwbuf = (struct pwbuf *)buf; int result = PWU_SUCCESS; |