Revision
96117
Author
jmr@macports.org
Date
2012-08-01 03:08:50 -0700 (Wed, 01 Aug 2012)

Log Message

mpack: fix missing return value (#33553)

Modified Paths

Added Paths

Diff

Modified: trunk/dports/mail/mpack/Portfile (96116 => 96117)


--- trunk/dports/mail/mpack/Portfile	2012-08-01 09:57:49 UTC (rev 96116)
+++ trunk/dports/mail/mpack/Portfile	2012-08-01 10:08:50 UTC (rev 96117)
@@ -1,6 +1,7 @@
 # $Id$
 
 PortSystem		1.0
+
 name            	mpack
 version         	1.6
 revision		1
@@ -17,6 +18,6 @@
 
 checksums		md5 a70fa5afa76539a9afb70b9d81568fe8
 
-patchfiles		patch-TMPDIR.diff
+patchfiles		patch-TMPDIR.diff uudecode.c.patch
 
 configure.args  	--mandir=${prefix}/share/man

Added: trunk/dports/mail/mpack/files/uudecode.c.patch (0 => 96117)


--- trunk/dports/mail/mpack/files/uudecode.c.patch	                        (rev 0)
+++ trunk/dports/mail/mpack/files/uudecode.c.patch	2012-08-01 10:08:50 UTC (rev 96117)
@@ -0,0 +1,11 @@
+--- uudecode.c.orig	2003-07-22 06:46:37.000000000 +1000
++++ uudecode.c	2012-08-01 20:05:39.000000000 +1000
+@@ -845,7 +845,7 @@ int uudecodeline(char *line, FILE *outfi
+ 	}
+ 	line += 4;
+     }
+-    return;
++    return 0;
+ }
+ 
+