From 1e5e0a26dade959638124d9ee40cd86f40ccaa5b Mon Sep 17 00:00:00 2001 From: verhaegs Date: Sat, 15 Oct 2011 15:01:57 +0000 Subject: [PATCH] RexxMast/RX: Fix problems with latest dos.library changes. This worked for ABBI_V0 but not anymore. Don't know if it are bugs in our implementation. Problems: - ErrorOutput() can be BNULL - SystemTags("PROGDIR:progname", SYS_ASynch, TRUE, ...) does not work anymore. PROGDIR: is not handled OK anymore. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@41892 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/rexxc/RX.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/workbench/rexxc/RX.c b/workbench/rexxc/RX.c index c355d1ade4..3b967a6b27 100644 --- a/workbench/rexxc/RX.c +++ b/workbench/rexxc/RX.c @@ -34,6 +34,8 @@ static BOOL init(void) { #ifdef __AROS__ out = ErrorOutput(); + if (out == BNULL) + out = Output(); #else out = Output(); #endif -- 2.11.4.GIT