C00B0381

Explanation

The filename argument passed to fopen() or freopen() specified '*' as the first character of the file name, indicating to open a terminal file or sysout data set. The program is not running in an interactive environment, meaning not under TSO in the foreground. This implies a sysout data set is to be opened. The mode argument specified update mode which is not allowed for a sysout data set.

Programmer response

Correct the application so that it does not attempt to open a sysout data set for update.

Symbolic Feedback Code

JrEdc1opsEsysinout01