diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/gssftp/ftpd/ChangeLog | 4 | ||||
| -rw-r--r-- | src/appl/gssftp/ftpd/ftpd.c | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/src/appl/gssftp/ftpd/ChangeLog b/src/appl/gssftp/ftpd/ChangeLog index 91f5c5c01..0a5b04445 100644 --- a/src/appl/gssftp/ftpd/ChangeLog +++ b/src/appl/gssftp/ftpd/ChangeLog @@ -1,3 +1,7 @@ +2001-07-04 Ezra Peisach <epeisach@mit.edu> + + * ftpd.c: Provide prototypes for myoob and lostconn. + 2001-07-03 Ezra Peisach <epeisach@mit.edu> * ftpd.c (sgetpwnam): Remove local declaration of sgetsave. diff --git a/src/appl/gssftp/ftpd/ftpd.c b/src/appl/gssftp/ftpd/ftpd.c index 3e832afd9..4ad23f239 100644 --- a/src/appl/gssftp/ftpd/ftpd.c +++ b/src/appl/gssftp/ftpd/ftpd.c @@ -239,7 +239,7 @@ char *rhost_sane; int swaitmax = SWAITMAX; int swaitint = SWAITINT; -void lostconn(), myoob(); +void lostconn(int), myoob(int); FILE *getdatasock(char *); #if defined(__STDC__) /* @@ -582,7 +582,8 @@ nextopt: } void -lostconn() +lostconn(sig) +int sig; { if (debug) syslog(LOG_DEBUG, "lost connection"); @@ -2149,7 +2150,8 @@ dologout(status) } void -myoob() +myoob(sig) + int sig; { char *cp, *cs; #ifndef strpbrk |
