summaryrefslogtreecommitdiff
path: root/packages/ctorrent/files/passkey.patch
diff options
context:
space:
mode:
authorOyvind Repvik <nail@nslu2-linux.org>2005-08-11 21:58:16 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-11 21:58:16 +0000
commitde51ba6b4bffb51bda3ae87f49506d3f42793889 (patch)
tree5aedb713c53d3eb2b41cc93a2c4b265f61339b0c /packages/ctorrent/files/passkey.patch
parent2c071abeee8f883ee38e4de0e0370a8816486894 (diff)
Updated ctorrent to use the complete extended ctorrent patch set
Diffstat (limited to 'packages/ctorrent/files/passkey.patch')
-rw-r--r--packages/ctorrent/files/passkey.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/packages/ctorrent/files/passkey.patch b/packages/ctorrent/files/passkey.patch
deleted file mode 100644
index 3debc44599..0000000000
--- a/packages/ctorrent/files/passkey.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-*** ctorrent/httpencode.cpp.orig Thu Sep 9 01:10:51 2004
---- ctorrent/httpencode.cpp Thu Aug 4 15:00:45 2005
-***************
-*** 88,94 ****
---- 88,98 ----
-
- /* path */
- if( *p != '/' ) return -1;
-+ #if 1 /* The passkey patch */
-+ for( ; *p; p++,path++) *path = *p;
-+ #else
- for( ; *p && *p != '?'; p++,path++) *path = *p;
-+ #endif
- *path = '\0';
- return 0;
- }