diff options
author | pst <pst@FreeBSD.org> | 1994-10-29 22:49:13 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1994-10-29 22:49:13 +0000 |
commit | d17053522aef125b2cd4fbfdb46f6c5ee098ba2d (patch) | |
tree | f66684c5ec36af3b70c07d4a94b8694f60f129ab /net | |
parent | d5463e5d6a039ed1c76af4329d9c5eb25bd4495d (diff) | |
download | FreeBSD-ports-d17053522aef125b2cd4fbfdb46f6c5ee098ba2d.zip FreeBSD-ports-d17053522aef125b2cd4fbfdb46f6c5ee098ba2d.tar.gz |
Fix invalid parameter passing.
Diffstat (limited to 'net')
-rw-r--r-- | net/imm/files/patch-ab | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net/imm/files/patch-ab b/net/imm/files/patch-ab new file mode 100644 index 0000000..c013432 --- /dev/null +++ b/net/imm/files/patch-ab @@ -0,0 +1,31 @@ +*** main.c.orig Fri Mar 4 16:01:13 1994 +--- main.c Sat Oct 29 15:45:04 1994 +*************** +*** 129,135 **** + ClientData clientdata; + Tcl_Interp *interp; + int argc; +! int *argv[]; + { + int transmitflag = FALSE; + int ofp; +--- 129,135 ---- + ClientData clientdata; + Tcl_Interp *interp; + int argc; +! char *argv[]; + { + int transmitflag = FALSE; + int ofp; +*************** +*** 161,166 **** +--- 161,169 ---- + repeatnum,argv[3], argv[1]); + fclose(stdin); + closeall(); ++ #ifndef SIGCLD ++ #define SIGCLD SIGCHLD ++ #endif + signal(SIGCLD,SIG_IGN); + Tcl_DeleteInterp(interp); + if (localhost == NULL) |