summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2003-08-06 09:33:38 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2003-08-06 09:33:38 +0000
commit7efa2169de0f8a00bf48eb189d318f06e3c86670 (patch)
tree9c498e506fd7447a3e9b840d2de96e9432b5382c /net-mail/vpopmail/files
parentmany symlnks now obsolete (diff)
downloadgentoo-2-7efa2169de0f8a00bf48eb189d318f06e3c86670.tar.gz
gentoo-2-7efa2169de0f8a00bf48eb189d318f06e3c86670.tar.bz2
gentoo-2-7efa2169de0f8a00bf48eb189d318f06e3c86670.zip
fix bug #23876
Diffstat (limited to 'net-mail/vpopmail/files')
-rw-r--r--net-mail/vpopmail/files/vpopmail-5.2.1-showall.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/net-mail/vpopmail/files/vpopmail-5.2.1-showall.patch b/net-mail/vpopmail/files/vpopmail-5.2.1-showall.patch
new file mode 100644
index 000000000000..31f439f22ef5
--- /dev/null
+++ b/net-mail/vpopmail/files/vpopmail-5.2.1-showall.patch
@@ -0,0 +1,21 @@
+diff -ur vpopmail-5.2.1.orig/vuserinfo.c vpopmail-5.2.1/vuserinfo.c
+--- vpopmail-5.2.1.orig/vuserinfo.c 2003-08-06 02:29:37.000000000 -0700
++++ vpopmail-5.2.1/vuserinfo.c 2003-08-06 02:31:02.000000000 -0700
+@@ -192,7 +192,7 @@
+ DisplayAll = 0;
+ break;
+ case 'a':
+- DisplayAll = 0;
++ DisplayAll = 1;
+ break;
+ default:
+ errflag = 1;
+@@ -229,6 +229,7 @@
+ printf("name: %s\n", mypw->pw_name);
+ printf("passwd: %s\n", mypw->pw_passwd);
+ printf("clear passwd: %s\n", mypw->pw_clear_passwd);
++ printf("comment: %s\n", mypw->pw_gecos);
+ printf("uid: %lu\n", (long unsigned)mypw->pw_uid);
+ printf("gid: %lu\n", (long unsigned)mypw->pw_gid);
+
+Only in vpopmail-5.2.1: vuserinfo.c~