aboutsummaryrefslogtreecommitdiff
path: root/comms/kermit/files
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-09-28 16:31:06 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-09-28 16:31:06 +0000
commitd60ad805ee8bc4101d81cebfdfc1e7e8055078d7 (patch)
treee50baae02cc7d2b3faae362b15f5dac48566b875 /comms/kermit/files
parent5e207625171f152f12ac6299915134f23d3f04ec (diff)
downloadports-d60ad805ee8bc4101d81cebfdfc1e7e8055078d7.tar.gz
ports-d60ad805ee8bc4101d81cebfdfc1e7e8055078d7.zip
- Fix build with gcc41
PR: ports/103748 Submitted by: trasz <trasz@pin.if.uz.zgora.pl>
Notes
Notes: svn path=/head/; revision=174042
Diffstat (limited to 'comms/kermit/files')
-rw-r--r--comms/kermit/files/patch-ck__crp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/comms/kermit/files/patch-ck__crp.c b/comms/kermit/files/patch-ck__crp.c
index 2c060188c63a..760bf8dc9c05 100644
--- a/comms/kermit/files/patch-ck__crp.c
+++ b/comms/kermit/files/patch-ck__crp.c
@@ -12,3 +12,14 @@ $FreeBSD$
return(rc);
}
+@@ -467,8 +467,8 @@
+ * These function pointers point to the current routines
+ * for encrypting and decrypting data.
+ */
+-static VOID (*encrypt_output) P((unsigned char *, int));
+-static int (*decrypt_input) P((int));
++VOID (*encrypt_output) P((unsigned char *, int));
++int (*decrypt_input) P((int));
+
+ #ifdef DEBUG
+ static int encrypt_debug_mode = 1;