aboutsummaryrefslogtreecommitdiff
path: root/mail/autorespond/files
diff options
context:
space:
mode:
authorPeter Pentchev <roam@FreeBSD.org>2003-08-29 16:04:41 +0000
committerPeter Pentchev <roam@FreeBSD.org>2003-08-29 16:04:41 +0000
commit0dcdd0d4ce9023d2b37a29bf4657ff3c76fe288a (patch)
tree7be5e44dcff6137eac4ffb2a269fa7cbce0f79ec /mail/autorespond/files
parentfd47489751f65f64648d53752785aab45cc507d4 (diff)
downloadports-0dcdd0d4ce9023d2b37a29bf4657ff3c76fe288a.tar.gz
ports-0dcdd0d4ce9023d2b37a29bf4657ff3c76fe288a.zip
Notes
Diffstat (limited to 'mail/autorespond/files')
-rw-r--r--mail/autorespond/files/patch-autorespond.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/autorespond/files/patch-autorespond.c b/mail/autorespond/files/patch-autorespond.c
new file mode 100644
index 000000000000..77c5b7745cef
--- /dev/null
+++ b/mail/autorespond/files/patch-autorespond.c
@@ -0,0 +1,11 @@
+--- autorespond.c.orig Mon Aug 18 14:41:33 2003
++++ autorespond.c Mon Aug 18 14:42:14 2003
+@@ -572,7 +572,7 @@
+ if ( *rpath == '$' )
+ {
+ rpath = safe_malloc( strlen(TheUser) + strlen(TheDomain) + 2);
+- strncpy( rpath, TheUser, strlen(TheUser) );
++ strncpy( rpath, TheUser, strlen(TheUser) + 1 );
+ strncat( rpath, "@", 1 );
+ strncat( rpath, TheDomain, strlen(TheDomain) );
+ }