Skip to content

Commit ac48a9b

Browse files
authored
Fix typo in environment variable name that broke interprocess communications (issue Interlisp/medley#106) (#132)
1 parent bf2855b commit ac48a9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unixfork.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ int fork_Unix() {
271271
char tempstring[30];
272272

273273
snprintf(tempstring, sizeof(tempstring), "%d", UnixToLisp[0]);
274-
setenv("LDEPIPEINE", tempstring, 1);
274+
setenv("LDEPIPEIN", tempstring, 1);
275275

276276
snprintf(tempstring, sizeof(tempstring), "%d", LispToUnix[1]);
277277
setenv("LDEPIPEOUT", tempstring, 1);

0 commit comments

Comments
 (0)