bugfix - Replace() was truncating the string
Modified: trunk/reactos/tools/rbuild/module.cpp
--- trunk/reactos/tools/rbuild/module.cpp 2005-08-24 05:58:14 UTC (rev 17506) +++ trunk/reactos/tools/rbuild/module.cpp 2005-08-24 06:01:02 UTC (rev 17507) @@ -38,7 +38,7 @@
p = p2 + find.size(); } if ( *p )
- ret += *p;
+ ret += p;
return ret; }