aboutsummaryrefslogtreecommitdiff
path: root/security/shibboleth2-sp/files/patch-shib-target_shib-handlers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'security/shibboleth2-sp/files/patch-shib-target_shib-handlers.cpp')
-rw-r--r--security/shibboleth2-sp/files/patch-shib-target_shib-handlers.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/security/shibboleth2-sp/files/patch-shib-target_shib-handlers.cpp b/security/shibboleth2-sp/files/patch-shib-target_shib-handlers.cpp
deleted file mode 100644
index 70aeb1660820..000000000000
--- a/security/shibboleth2-sp/files/patch-shib-target_shib-handlers.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-
-$FreeBSD$
-
---- shib-target/shib-handlers.cpp.orig
-+++ shib-target/shib-handlers.cpp
-@@ -544,8 +544,8 @@
- for (; *s; s++) {
- if (strchr(badchars,*s) || *s<=0x20 || *s>=0x7F) {
- ret+='%';
-- ret+=hexchar(*s >> 4);
-- ret+=hexchar(*s & 0x0F);
-+ ret+=hexchar((unsigned char)*s >> 4);
-+ ret+=hexchar((unsigned char)*s & 0x0F);
- }
- else
- ret+=*s;