diff options
author | pav <pav@FreeBSD.org> | 2007-03-26 01:24:07 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-03-26 01:24:07 +0800 |
commit | e83ddd175397a4a39aaa5562eea535ed706b228f (patch) | |
tree | 3d110c8452cc39e91d0e61e494d2de9774a11968 /mail | |
parent | 5d7304e9f1085bbd6727faa540f1402891ad8820 (diff) | |
download | freebsd-ports-gnome-e83ddd175397a4a39aaa5562eea535ed706b228f.tar.gz freebsd-ports-gnome-e83ddd175397a4a39aaa5562eea535ed706b228f.tar.zst freebsd-ports-gnome-e83ddd175397a4a39aaa5562eea535ed706b228f.zip |
- Fix crash with -t option
PR: ports/108657
Submitted by: Alex Samorukov <samm@os2.kiev.ua> (maintainer)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/spamd/files/patch-spamd-setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/spamd/files/patch-spamd-setup b/mail/spamd/files/patch-spamd-setup index 0b18ed1db43f..6b517f056209 100644 --- a/mail/spamd/files/patch-spamd-setup +++ b/mail/spamd/files/patch-spamd-setup @@ -91,7 +91,7 @@ +#ifndef IPFW while ((ch = getopt(argc, argv, "nd")) != -1) { +#else -+ while ((ch = getopt(argc, argv, "ndt")) != -1) { ++ while ((ch = getopt(argc, argv, "ndt:")) != -1) { +#endif switch (ch) { case 'n': |