Hello,
This is a patch to fix what appears to be a simple typo. The warning says
"invalid status assuming 0", but then instead sets runLast to 0.
Signed-of-by: Steve Grubb <sgrubb at redhat.com>
Index: src/main/main.c
===================================================================
--- src/main/main.c (revision 72935)
+++ src/main/main.c (working copy)
@@ -1341,7 +1341,7 @@
status = asInteger(CADR(args));
if (status == NA_INTEGER) {
warning(_("invalid 'status', 0 assumed"));
- runLast = 0;
+ status = 0;
}
runLast = asLogical(CADDR(args));
if (runLast == NA_LOGICAL) {