diff options
author | tron <tron> | 1998-06-20 21:24:09 +0000 |
---|---|---|
committer | tron <tron> | 1998-06-20 21:24:09 +0000 |
commit | 8532f98224e93dd5e35b28c7805953812cedae1b (patch) | |
tree | a9224ad63440eb456fa35c273fa7ff8ac2a0e191 /comms/kermit | |
parent | d3d67b9e9b209668218bc8afdbd4623a59d43d18 (diff) | |
download | pkgsrc-8532f98224e93dd5e35b28c7805953812cedae1b.tar.gz |
Apply fix to the real source of the problem.
Diffstat (limited to 'comms/kermit')
-rw-r--r-- | comms/kermit/patches/patch-ac | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/comms/kermit/patches/patch-ac b/comms/kermit/patches/patch-ac index 85df7526b5f..344286e4865 100644 --- a/comms/kermit/patches/patch-ac +++ b/comms/kermit/patches/patch-ac @@ -1,12 +1,15 @@ ---- ckuus5.c.orig Thu Jun 18 04:32:48 1998 -+++ ckuus5.c Thu Jun 18 05:00:44 1998 -@@ -2540,4 +2540,6 @@ - q[i] = m_arg[maclvl][i]; -- debug(F111,"popclvl mac 8", -- (maclvl > -1 && macx[maclvl]) ? macx[maclvl] : "",maclvl); -+ if (maclvl > -1 && macx[maclvl]) -+ debug(F111,"popclvl mac 8",macx[maclvl],maclvl); -+ else -+ debug(F111,"popclvl mac 8","",maclvl); - } else maclvl = -1; - +--- ckcdeb.h.orig Mon Nov 25 01:20:48 1996 ++++ ckcdeb.h Sat Jun 20 23:20:14 1998 +@@ -908,10 +908,10 @@ + /* Now define the debug() macro. */ + #ifdef IFDEBUG + /* Use this form to avoid function calls: */ +-#define debug(a,b,c,d) if (deblog) dodebug(a,b,(char *)c,(long)d) ++#define debug(a,b,c,d) if (deblog) dodebug(a,b,(char *)(c),(long)d) + #else + /* Use this form to save space: */ +-#define debug(a,b,c,d) dodebug(a,b,(char *)c,(long)d) ++#define debug(a,b,c,d) dodebug(a,b,(char *)(c),(long)d) + #endif /* MAC */ + + #ifdef COMMENT |