ccollect:0.6.2->0.7.0
[nslu2-linux/optware.git] / sources / ctorrent / passkey.patch
blob3debc445992c8f591f85f22a8e81fc601509c092
1 *** ctorrent/httpencode.cpp.orig Thu Sep 9 01:10:51 2004
2 --- ctorrent/httpencode.cpp Thu Aug 4 15:00:45 2005
3 ***************
4 *** 88,94 ****
5 --- 88,98 ----
7 /* path */
8 if( *p != '/' ) return -1;
9 + #if 1 /* The passkey patch */
10 + for( ; *p; p++,path++) *path = *p;
11 + #else
12 for( ; *p && *p != '?'; p++,path++) *path = *p;
13 + #endif
14 *path = '\0';
15 return 0;