diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 1996-10-22 03:43:34 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 1996-10-22 03:43:34 +0000 |
| commit | fac16cb5165dfc41748135e8dee4651858a09ed2 (patch) | |
| tree | e0ae98a91963d59a60b98d87cf8180974b1ece4a /usr.bin/chpass | |
| parent | 900520ed02c5afcaa8fe5b3abe5143796fb44f2c (diff) | |
Notes
Diffstat (limited to 'usr.bin/chpass')
| -rw-r--r-- | usr.bin/chpass/pw_copy.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/chpass/pw_copy.c b/usr.bin/chpass/pw_copy.c index b2c234c50011..fa77f05da615 100644 --- a/usr.bin/chpass/pw_copy.c +++ b/usr.bin/chpass/pw_copy.c @@ -65,8 +65,8 @@ pw_copy(ffd, tfd, pw) snprintf(uidstr, sizeof(uidstr), "%d", pw->pw_uid); snprintf(gidstr, sizeof(gidstr), "%d", pw->pw_gid); - snprintf(chgstr, sizeof(chgstr), "%lu", pw->pw_change); - snprintf(expstr, sizeof(expstr), "%lu", pw->pw_expire); + snprintf(chgstr, sizeof(chgstr), "%ld", pw->pw_change); + snprintf(expstr, sizeof(expstr), "%ld", pw->pw_expire); if (!(from = fdopen(ffd, "r"))) pw_error(_PATH_MASTERPASSWD, 1, 1); @@ -96,7 +96,7 @@ pw_copy(ffd, tfd, pw) goto err; continue; } - (void)fprintf(to, "%s:%s:%s:%s:%s:%ld:%ld:%s:%s:%s\n", + (void)fprintf(to, "%s:%s:%s:%s:%s:%s:%s:%s:%s:%s\n", pw->pw_name, pw->pw_passwd, pw->pw_fields & _PWF_UID ? uidstr : "", pw->pw_fields & _PWF_GID ? gidstr : "", @@ -117,7 +117,7 @@ pw_copy(ffd, tfd, pw) pw_error(NULL, 0, 1); } else #endif /* YP */ - (void)fprintf(to, "%s:%s:%s:%s:%s:%ld:%ld:%s:%s:%s\n", + (void)fprintf(to, "%s:%s:%s:%s:%s:%s:%s:%s:%s:%s\n", pw->pw_name, pw->pw_passwd, pw->pw_fields & _PWF_UID ? uidstr : "", pw->pw_fields & _PWF_GID ? gidstr : "", |
