diff options
author | rsc <devnull@localhost> | 2006-02-12 19:40:23 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-02-12 19:40:23 +0000 |
commit | 5cc53af92d6bfae8b930d3c9154c8ed44e1feb09 (patch) | |
tree | 54d4829d507dba44e90e2f0ec2cf26cde280dd11 /src/cmd/upas/q | |
parent | d0d15c12d43d201cf916ebfff157b976c8f3b6a1 (diff) | |
download | plan9port-5cc53af92d6bfae8b930d3c9154c8ed44e1feb09.tar.gz plan9port-5cc53af92d6bfae8b930d3c9154c8ed44e1feb09.tar.bz2 plan9port-5cc53af92d6bfae8b930d3c9154c8ed44e1feb09.zip |
more changes
Diffstat (limited to 'src/cmd/upas/q')
-rw-r--r-- | src/cmd/upas/q/runq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/upas/q/runq.c b/src/cmd/upas/q/runq.c index 7ab055ed..e7f35284 100644 --- a/src/cmd/upas/q/runq.c +++ b/src/cmd/upas/q/runq.c @@ -513,7 +513,7 @@ dofile(Dir *dp) if(wm->msg[0]){ if(debug) fprint(2, "[%d] wm->msg == %s\n", getpid(), wm->msg); - if(!Rflag && strstr(wm->msg, "Retry")==0){ + if(!Rflag && atoi(wm->msg) != RetryCode){ /* return the message and remove it */ if(returnmail(av, dp->name, wm->msg) != 0) logit("returnmail failed", dp->name, av); |