aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2006-11-08 18:20:52 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2006-11-08 18:20:52 +0000
commit52bc239b984395eba7e30a8e54ace47051570fe5 (patch)
treea11f544c6ea4c1487c693fe04a4a28b3aaddd583
parent4c2382b8cbb728122fe144afefd28b8cd2f7eef6 (diff)
downloadmailfromd-52bc239b984395eba7e30a8e54ace47051570fe5.tar.gz
mailfromd-52bc239b984395eba7e30a8e54ace47051570fe5.tar.bz2
(pragma_option): Skip extra whitespace between the
word `option' and the argument. (src/main.c): Fix address validation (cond : RATE error): Remove FIXME-xref. git-svn-id: file:///svnroot/mailfromd/branches/release_3_0_patches@822 7a8a7f39-df28-0410-adc6-e0d955640f24
-rw-r--r--src/gram.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gram.y b/src/gram.y
index 70567ced..69e18202 100644
--- a/src/gram.y
+++ b/src/gram.y
@@ -768,7 +768,7 @@ cond : expr
| RATE error
{
parse_error("`rate' statement is no longer supported, use function instead;");
- parse_error("refer to FIXME-xref for the detailed discussion");
+ parse_error("refer to http://puszcza.gnu.org.ua/software/mailfromd/manual/html_node/Sending-Rate.html for the detailed discussion");
}
;
@@ -2666,6 +2666,7 @@ pragma_option(char *text)
}
p = value;
+ skip_ws(p);
len = strlen(p);
if ((*p == '"' || *p == '\'') && p[len-1] == *p) {
p[len-1] = 0;

Return to:

Send suggestions and report system problems to the System administrator.