aboutsummaryrefslogtreecommitdiffstats
path: root/main/postfix/dynamic-maps3.patch
Commit message (Collapse)AuthorAgeFilesLines
* Fixed postfix bug causing postconf -m to segfaultHugo Landau2013-04-231-1/+1
| | | | | | | | | | | | | | | Running postconf -m resulted in a segfault and no output. The bug originated in dynamic-maps3.patch. postconf_other.c was modified by this patch such that it called concatenate(), but the file was not modified to include <stringops.h>, resulting in the function being undeclared. This resulted in gcc incorrectly assuming a default prototype for it with return type int instead of char*, causing pointer truncation on 64-bit systems, causing a segfault when the truncated pointer is passed to another function. The fix is to #include <stringops.h> in postconf_other.c. The patch has been updated. I don't have abuild 2.14 on this machine so I'll leave updating the SHA256 checksums to whoever commits it.
* main/postfix: upgrade to 2.9.0Natanael Copa2012-02-031-0/+1081
and forward port the dynamic-maps patch