From: Robert Colquhoun Date: Tue, 29 Jun 1999 11:55:07 +0000 (+0000) Subject: Fix to faxcron so that the status report does not include X-Git-Tag: HYLAFAX-4_1BETA1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc2c24d284693e45ec92bb678d5f0cf293e4dfa2;p=thirdparty%2FHylaFAX.git Fix to faxcron so that the status report does not include busy/no carrrier etc errors. The code was there previously but did not work correctly. (thanks to Alan Sparks asparks@cpd.harris.com for this). --- diff --git a/util/faxcron.sh.in b/util/faxcron.sh.in index 5108845e..b92b47d5 100644 --- a/util/faxcron.sh.in +++ b/util/faxcron.sh.in @@ -229,14 +229,14 @@ function printTranscript(commid) } BEGIN { FS="\t"; - callFailed["Busy signal"] = 1; - callFailed["Unknown pro"] = 1; - callFailed["No carrier "] = 1; - callFailed["No local di"] = 1; - callFailed["No answer f"] = 1; - callFailed["Job aborted"] = 1; - callFailed["Invalid dia"] = 1; - callFailed["Can not loc"] = 1; + callFailed["busy signal"] = 1; + callFailed["unknown pro"] = 1; + callFailed["no carrier "] = 1; + callFailed["no local di"] = 1; + callFailed["no answer f"] = 1; + callFailed["job aborted"] = 1; + callFailed["invalid dia"] = 1; + callFailed["can not loc"] = 1; months["01"] = "Jan"; months["02"] = "Feb"; months["03"] = "Mar"; months["04"] = "Apr"; months["05"] = "May"; months["06"] = "Jun";