diff options
author | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:12:51 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:12:51 +0000 |
commit | 1d90b4b98c03a428fb681d10ef5d33e457f8640e (patch) | |
tree | bfe9d83efcbbd2a48643a13056c88f86884cfacc /net-im/icb/files/patch-n-ac | |
parent | s/chtype/chartype/g so this builds on FreeBSD/Alpha too. (diff) |
Fix the first arg to strscat so we can use stdarg macros and get this
to build on FreeBSD/Alpha.
Diffstat (limited to '')
-rw-r--r-- | net-im/icb/files/patch-n-ac | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/net-im/icb/files/patch-n-ac b/net-im/icb/files/patch-n-ac index 925a665408c6..bba6ba061903 100644 --- a/net-im/icb/files/patch-n-ac +++ b/net-im/icb/files/patch-n-ac @@ -1,5 +1,14 @@ ---- icb/protos.h-orig Fri Feb 24 22:20:25 1995 -+++ icb/protos.h Wed Apr 15 12:07:50 1998 +--- icb/protos.h.orig Fri Feb 24 15:20:25 1995 ++++ icb/protos.h Sun Sep 19 18:17:21 1999 +@@ -15,7 +15,7 @@ + char *idlestr(char *num); + char *nextword(char *s); + char *response(char *num); +-char *strscat(int va_alist,...); ++char *strscat(char *dest, ...); + char *tildexpand(char *s); + int addusage(char *name, int type, char *args, char *usage); + sighandler askquit(); @@ -64,7 +64,7 @@ int inserttab(void); int ishushed(char *nick); |