diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1997-09-18 12:25:58 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1997-09-18 12:25:58 -0400 |
commit | d2e46bbfcbedb43938b866f4ad9e8bf1d4084b7c (patch) | |
tree | 9f98081fe52ddab37286a6208c66d3e7f14f216b /src/LYCgi.c | |
parent | dc9e683bddf52e0720f5e74e3349533c9ee9f97a (diff) | |
download | lynx-snapshots-d2e46bbfcbedb43938b866f4ad9e8bf1d4084b7c.tar.gz |
snapshot of project "lynx", label v2-7-1ac_0-68
Diffstat (limited to 'src/LYCgi.c')
-rw-r--r-- | src/LYCgi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LYCgi.c b/src/LYCgi.c index 3e825502..44a85bd4 100644 --- a/src/LYCgi.c +++ b/src/LYCgi.c @@ -289,7 +289,7 @@ PRIVATE int LYLoadCGI ARGS4( int fd1[2], fd2[2]; char buf[1024]; pid_t pid; -#if HAVE_TYPE_UNION_WAIT && !HAVE_WAITPID +#if HAVE_TYPE_UNIONWAIT && !HAVE_WAITPID union wait wstatus; #else int wstatus; @@ -376,7 +376,7 @@ PRIVATE int LYLoadCGI ARGS4( (*target->isa->put_block)(target, buf, chars); } -#if HAVE_TYPE_UNION_WAIT && !HAVE_WAITPID +#if HAVE_TYPE_UNIONWAIT && !HAVE_WAITPID while (wait(&wstatus) != pid) ; /* do nothing */ #else |