Replace() bugfix #2 - forgot to insert replacement text ( yes yes I suck you can...
authorRoyce Mitchell III <royce3@ev1.net>
Wed, 24 Aug 2005 06:03:34 +0000 (06:03 +0000)
committerRoyce Mitchell III <royce3@ev1.net>
Wed, 24 Aug 2005 06:03:34 +0000 (06:03 +0000)
svn path=/trunk/; revision=17508

reactos/tools/rbuild/module.cpp

index d859215..b114b7a 100644 (file)
@@ -35,6 +35,7 @@ Replace ( const string& s, const string& find, const string& with )
                        break;
                if ( p2 > p )
                        ret += string ( p, p2-p );
+               ret += with;
                p = p2 + find.size();
        }
        if ( *p )