[3095] in Release_Engineering
fix for olc
daemon@ATHENA.MIT.EDU (Dorothy Bowe)
Tue Jul 27 15:52:18 1993
To: rel-eng@Athena.MIT.EDU
In-Reply-To:
Date: Tue, 27 Jul 93 15:52:15 EDT
From: Dorothy Bowe <dot@Athena.MIT.EDU>
Hi folks,
I think that this will fix the problem with mail in olc. In
src/clients/tty/t_utils.c, make edit_message pass along the return from
call_program instead of a void return.
./dot
(The line numbers are probably off as I've made other changes to my
copy.)
593,595c575
< *
< * dlb - changed to pass back return from call_program
< * Returns: passes back return from call_program
---
> * Returns: nothing.
603d582
< ERRCODE
621c600
< return (call_program(editor, file));
---
> (void) call_program(editor, file);