Date: Sat, 8 Nov 1997 08:10:38 -0500
Reply-To: REXX Programming discussion list <REXXLIST@UGA.CC.UGA.EDU>
Sender: REXX Programming discussion list <REXXLIST@UGA.CC.UGA.EDU>
From: Undetermined origin c/o LISTSERV administrator
<owner-LISTSERV@UGA.CC.UGA.EDU>
Subject: Re: Eliminating RxSock startup message
Content-Type: text/plain; charset="us-ascii"
On Mon, 03 Nov 97 06:22:09 +0200, Anna Chiara Bellini wrote:
:>Does anybody know how to eliminate the copyright message that RxSock issues
:>the first time you load it after a reboot? It is quite a problem to me,
:>because I am using a Rexx CGI, and of course std output is redirected to the
:>browser, so the message will display in the client.
:>
:>Any help will be really appreciated
:>
:>Anna
if RxFuncQuery("SockLoadFuncs") then do
call RxFuncAdd 'SockLoadFuncs','RxSock','SockLoadFuncs'
call SockLoadFuncs 'q';
end
call RxFuncAdd 'FTPLoadFuncs','RxFtp','FTPLoadFuncs';
call FTPLoadFuncs 'q'
Notice the 'q' for quiet..
Clive
|