summaryrefslogtreecommitdiff
path: root/packages/ctorrent/files/passkey.patch
diff options
context:
space:
mode:
authorJustin Patrin <papercrane@gmail.com>2005-08-11 22:56:38 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-08-11 22:56:38 +0000
commit98d59ca10310424f7b9e03188321251ff490291e (patch)
tree844d671cb356ef12f79357202217d0f17787e9fd /packages/ctorrent/files/passkey.patch
parenta55bb1084356a8f5220c856c4221a9448ee55444 (diff)
parent216826630f56103c2d75c0c512c1978fa65079a3 (diff)
merge of a0401b9f09376ea2c7d6eb10ff1ccfb84ec7649c
and a0a93c4cb9609431f78a0188791c0cd9574687c9
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;
+ }