![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
Author: jheino Date: 2006-04-15 01:08:29 +0200 (Sat, 15 Apr 2006) New Revision: 1261 Removed: crux-2.2/ports/opt/fetchmail/fetchmail-6.3.2.patch Modified: crux-2.2/ports/opt/fetchmail/.md5sum crux-2.2/ports/opt/fetchmail/Pkgfile Log: fetchmail: updated to version 6.3.4 Modified: crux-2.2/ports/opt/fetchmail/.md5sum =================================================================== --- crux-2.2/ports/opt/fetchmail/.md5sum 2006-04-14 17:32:39 UTC (rev 1260) +++ crux-2.2/ports/opt/fetchmail/.md5sum 2006-04-14 23:08:29 UTC (rev 1261) @@ -1,2 +1 @@ -98182bbbc983c672697effef9c019476 fetchmail-6.3.2.patch -a532134a5e3b35b4f8b78a8184439837 fetchmail-6.3.2.tar.bz2 +35ded0414fcff79b492d6ade2ce48911 fetchmail-6.3.4.tar.bz2 Modified: crux-2.2/ports/opt/fetchmail/Pkgfile =================================================================== --- crux-2.2/ports/opt/fetchmail/Pkgfile 2006-04-14 17:32:39 UTC (rev 1260) +++ crux-2.2/ports/opt/fetchmail/Pkgfile 2006-04-14 23:08:29 UTC (rev 1261) @@ -4,14 +4,12 @@ # Depends on: openssl name=fetchmail -version=6.3.2 -release=2 -source=(http://download.berlios.de/$name/$name-$version.tar.bz2 \ - $name-$version.patch) +version=6.3.4 +release=1 +source=(http://download.berlios.de/$name/$name-$version.tar.bz2) build() { cd $name-$version - patch -p0 < ../$name-$version.patch ./configure --prefix=/usr --with-ssl=/usr --disable-nls make make DESTDIR=$PKG install Deleted: crux-2.2/ports/opt/fetchmail/fetchmail-6.3.2.patch =================================================================== --- crux-2.2/ports/opt/fetchmail/fetchmail-6.3.2.patch 2006-04-14 17:32:39 UTC (rev 1260) +++ crux-2.2/ports/opt/fetchmail/fetchmail-6.3.2.patch 2006-04-14 23:08:29 UTC (rev 1261) @@ -1,17 +0,0 @@ -Index: netrc.c -=================================================================== -- --- netrc.c (Revision 4683) -+++ netrc.c (Revision 4684) -@@ -314,8 +314,10 @@ - free_netrc(netrc_entry *a) { - while(a) { - netrc_entry *n = a->next; -- - memset(a->password, 0x55, strlen(a->password)); -- - xfree(a->password); -+ if (a->password != NULL) { -+ memset(a->password, 0x55, strlen(a->password)); -+ free(a->password); -+ } - xfree(a->login); - xfree(a->host); - xfree(a);