1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-17 16:44:00 +00:00

Fix typo in environment variable name that broke interprocess communications (issue Interlisp/medley#106) (#132)

This commit is contained in:
Nick Briggs 2020-12-24 10:02:20 -08:00 committed by GitHub
parent bf2855be58
commit ac48a9bf9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,7 +271,7 @@ int fork_Unix() {
char tempstring[30];
snprintf(tempstring, sizeof(tempstring), "%d", UnixToLisp[0]);
setenv("LDEPIPEINE", tempstring, 1);
setenv("LDEPIPEIN", tempstring, 1);
snprintf(tempstring, sizeof(tempstring), "%d", LispToUnix[1]);
setenv("LDEPIPEOUT", tempstring, 1);