- Rename :: patchfiles [1] - Merge pkg-req and scripts/pre-install into pkg-install [1] - Replace tab by space in WWW: line [1] - Clean up rc script [1] - Add USE_GCC because clang does not like -freg-struct-return (yet) - Use USERS and GROUPS [1] - Drop empty QPOPAUTH_SETUID option - Fix USE_OPENSSL usage [1] - Replace knobs by options [1] - Merge install-conf-file target into post-install target PR: ports/185285 [1] Submitted by: Takefu <takefu@airport.fm> Approved by: portmgr (mostly infastructure fixes)
28 lines
1,017 B
C
28 lines
1,017 B
C
--- password/poppassd.c.orig Sat May 5 18:50:05 2001
|
|
+++ password/poppassd.c Sat May 5 18:52:59 2001
|
|
@@ -284,6 +284,8 @@
|
|
|
|
static char *P1[] =
|
|
{
|
|
+ "changing local password for *\nold password: ", /* FreeBSD */
|
|
+ "changing nis password for *\nold password: ", /* FreeBSD NIS */
|
|
"changing password for *\nold password: ", /* shadow */
|
|
"enter login password: ", /* Solaris */
|
|
"old smb password: ", /* smb */
|
|
@@ -301,6 +303,7 @@
|
|
|
|
static char *P3[] =
|
|
{
|
|
+ "retype new password: ", /* FreeBSD */
|
|
"re-enter new password:*", /* shadow */
|
|
"re-enter new password: ",
|
|
"retype new smb password: ", /* smb */
|
|
@@ -309,6 +312,8 @@
|
|
|
|
static char *P4[] =
|
|
{
|
|
+ "passwd: updating the database...\npasswd: done ", /* FreeBSD */
|
|
+ "nis password has been changed * ", /* FreeBSD NIS */
|
|
"password changed. ", /* shadow */
|
|
"password changed ", /* smb */
|
|
""
|