diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2002-11-02 21:33:09 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2002-11-02 21:33:09 +0000 |
commit | aa47b1121dc049024db4b375fc8c9b8d0e7ecb33 (patch) | |
tree | aee28ec00f8d32f7a49abb6f9bf9a0c8b3d238da /mail/vpopmail-devel/files/patch-vdelivermail.c | |
parent | Issue a patch release 20021103, which fixes a bug where pkgdb -F (diff) |
Update the checksum to match the "new" distfile.
Submitted by: gerald <gerald@hannibal.symicon.com> - the original
notification about the vpopmail distfile checksum change
Fix a possible buffer underflow bug in the changed code.
Add a new ENABLE_MYSQL_LIMITS knob for .qmailadmin-limits processing, and
DISABLE the new MySQL limits code - it does not even compile as shipped :(
Use the correct configure script option for specifying the path to
the tcprules program, so vpopmail works even with LOCALBASE != /usr/local.
Submitted by: Mike Meyer <mwm@mired.org> - the tcprules patch
Notes
Notes:
svn path=/head/; revision=69307
Diffstat (limited to 'mail/vpopmail-devel/files/patch-vdelivermail.c')
-rw-r--r-- | mail/vpopmail-devel/files/patch-vdelivermail.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/vpopmail-devel/files/patch-vdelivermail.c b/mail/vpopmail-devel/files/patch-vdelivermail.c new file mode 100644 index 000000000000..106281226007 --- /dev/null +++ b/mail/vpopmail-devel/files/patch-vdelivermail.c @@ -0,0 +1,11 @@ +--- vdelivermail.c.orig Sat Nov 2 22:34:39 2002 ++++ vdelivermail.c Sat Nov 2 22:35:20 2002 +@@ -263,7 +263,7 @@ + + /* check for wildcard if there's no match */ + if(tmpstr == NULL) { +- for(i=strlen(TheUser);i >= 0 && j != 1;--i) { ++ for(i=strlen(TheUser);i > 0 && j != 1;--i) { + if(TheUser[i-1]=='-') { + tmpuser[0] = '\0'; + strncat(tmpuser,TheUser,i); |