taken from this bugreport:
http://sourceforge.net/tracker/?func=detail&aid=
3159066&group_id=202532&atid=981959
thanks Norbert Zagyi <znorbi@znorbi.net> for the hint
SVN-Revision: 35041
PKG_NAME:=ctorrent
PKG_VERSION:=dnh3.3.2
-PKG_RELEASE:=5
+PKG_RELEASE:=6
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/dtorrent \
--- /dev/null
+--- a/bencode.cpp
++++ b/bencode.cpp
+@@ -44,6 +44,10 @@ size_t buf_long(const char *b,size_t len
+ p++; len--;
+ }
+
++ if( *p == '-'){
++ p++; len--;
++ }
++
+ for(psave = p; len && isdigit(*p); p++,len--) ;
+
+ if(!len || MAX_INT_SIZ < (p - psave) || *p != endchar) return 0;