Thu Jul 11 20:03:23 2002 Michael Jennings (mej)

Each side of an || must have a valid shell command.


SVN revision: 6337
This commit is contained in:
Michael Jennings 2002-07-12 00:08:04 +00:00
parent 0db3598235
commit aa959247eb
2 changed files with 5 additions and 1 deletions

View File

@ -4763,3 +4763,7 @@ disk.
Also fixed a problem where PrintScreen would cause Eterm to exit.
Pointed out by Laurence J. Lane <ljlane@debian.org>.
----------------------------------------------------------------------
Thu Jul 11 20:03:23 2002 Michael Jennings (mej)
Each side of an || must have a valid shell command.
----------------------------------------------------------------------

View File

@ -1006,7 +1006,7 @@ ns_make_call(_ns_sess * sess)
int r, l = strlen(NS_SCREEM_CALL) + (scream ? strlen(scream) : 0) + (screen ? strlen(screen) : 0) - 3;
if ((screem = MALLOC(l))) {
r = snprintf(screem, l, NS_SCREEM_CALL, scream ? scream : "", screen ? screen : "");
r = snprintf(screem, l, NS_SCREEM_CALL, scream ? scream : ":", screen ? screen : ":");
#ifdef NS_PARANOID
if ((r < 0) || (r > l))
ns_free(&screem);