mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
Fix invalid parameter passing.
This commit is contained in:
parent
50ba070af7
commit
66d8ba2e0b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=294
31
mbone/imm/files/patch-ab
Normal file
31
mbone/imm/files/patch-ab
Normal file
@ -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)
|
31
net/imm/files/patch-ab
Normal file
31
net/imm/files/patch-ab
Normal file
@ -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)
|
Loading…
Reference in New Issue
Block a user