aboutsummaryrefslogtreecommitdiff
path: root/security/krb5-16/files
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2004-10-20 20:20:06 +0000
committerCy Schubert <cy@FreeBSD.org>2004-10-20 20:20:06 +0000
commitcba050d77c49efe96464738d7a39aabe4789bf7f (patch)
treee7ce0db887d21a39f21b29b4ab24ffea72705f29 /security/krb5-16/files
parent4c0be327f6f4e2f54d1829a11b3c7fe168166831 (diff)
downloadports-cba050d77c49efe96464738d7a39aabe4789bf7f.tar.gz
ports-cba050d77c49efe96464738d7a39aabe4789bf7f.zip
Notes
Diffstat (limited to 'security/krb5-16/files')
-rw-r--r--security/krb5-16/files/patch-lib::krb5::asn.1::asn1buf.c13
-rw-r--r--security/krb5-16/files/patch-lib::krb5::krb::rd_rep.c11
-rw-r--r--security/krb5-16/files/patch-lib::krb5::krb::send_tgs.c20
3 files changed, 0 insertions, 44 deletions
diff --git a/security/krb5-16/files/patch-lib::krb5::asn.1::asn1buf.c b/security/krb5-16/files/patch-lib::krb5::asn.1::asn1buf.c
deleted file mode 100644
index 6d3da983adc3..000000000000
--- a/security/krb5-16/files/patch-lib::krb5::asn.1::asn1buf.c
+++ /dev/null
@@ -1,13 +0,0 @@
-*** lib/krb5/asn.1/asn1buf.c 12 Mar 2003 04:33:30 -0000 5.24
---- lib/krb5/asn.1/asn1buf.c 23 Aug 2004 03:43:47 -0000
-***************
-*** 122,127 ****
---- 122,129 ----
- return ASN1_OVERRUN;
- }
- while (nestlevel > 0) {
-+ if (buf->bound - buf->next + 1 <= 0)
-+ return ASN1_OVERRUN;
- retval = asn1_get_tag_2(buf, &t);
- if (retval) return retval;
- if (!t.indef) {
diff --git a/security/krb5-16/files/patch-lib::krb5::krb::rd_rep.c b/security/krb5-16/files/patch-lib::krb5::krb::rd_rep.c
deleted file mode 100644
index 0772c869f063..000000000000
--- a/security/krb5-16/files/patch-lib::krb5::krb::rd_rep.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- lib/krb5/krb/rd_rep.c.orig Fri Jun 13 17:09:47 2003
-+++ lib/krb5/krb/rd_rep.c Wed Sep 1 11:46:52 2004
-@@ -71,6 +71,8 @@
-
- /* now decode the decrypted stuff */
- retval = decode_krb5_ap_rep_enc_part(&scratch, repl);
-+ if (retval)
-+ goto clean_scratch;
-
- /* Check reply fields */
- if (((*repl)->ctime != auth_context->authentp->ctime) ||
diff --git a/security/krb5-16/files/patch-lib::krb5::krb::send_tgs.c b/security/krb5-16/files/patch-lib::krb5::krb::send_tgs.c
deleted file mode 100644
index 07b494ffd93e..000000000000
--- a/security/krb5-16/files/patch-lib::krb5::krb::send_tgs.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- lib/krb5/krb/send_tgs.c.orig Thu May 13 12:27:59 2004
-+++ lib/krb5/krb/send_tgs.c Wed Sep 1 11:46:52 2004
-@@ -269,6 +269,8 @@
- if (!tcp_only) {
- krb5_error *err_reply;
- retval = decode_krb5_error(&rep->response, &err_reply);
-+ if (retval)
-+ goto send_tgs_error_3;
- if (err_reply->error == KRB_ERR_RESPONSE_TOO_BIG) {
- tcp_only = 1;
- krb5_free_error(context, err_reply);
-@@ -277,6 +279,8 @@
- goto send_again;
- }
- krb5_free_error(context, err_reply);
-+ send_tgs_error_3:
-+ ;
- }
- rep->message_type = KRB5_ERROR;
- } else if (krb5_is_tgs_rep(&rep->response))