summaryrefslogtreecommitdiff
path: root/packages/ctorrent/files/passkey.patch
diff options
context:
space:
mode:
authorOyvind Repvik <nail@nslu2-linux.org>2005-08-10 05:00:30 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-10 05:00:30 +0000
commitd718ec6e34553f5d6b967860b4c78a313864fb9d (patch)
tree214a57a311e8c59d07e364651de0b9bdc6eede18 /packages/ctorrent/files/passkey.patch
parentd55a8660b010aec1543b4acd7a8b43e6de7ca846 (diff)
Added alignment patch, passkey and configure patch.
Diffstat (limited to 'packages/ctorrent/files/passkey.patch')
-rw-r--r--packages/ctorrent/files/passkey.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/ctorrent/files/passkey.patch b/packages/ctorrent/files/passkey.patch
new file mode 100644
index 0000000000..3debc44599
--- /dev/null
+++ b/packages/ctorrent/files/passkey.patch
@@ -0,0 +1,16 @@
+*** 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;
+ }