projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
2a5ef2e
)
Replace() bugfix #2 - forgot to insert replacement text ( yes yes I suck you can...
author
Royce Mitchell III
<royce3@ev1.net>
Wed, 24 Aug 2005 06:03:34 +0000
(06:03 +0000)
committer
Royce 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
patch
|
blob
|
history
diff --git
a/reactos/tools/rbuild/module.cpp
b/reactos/tools/rbuild/module.cpp
index
d859215
..
b114b7a
100644
(file)
--- a/
reactos/tools/rbuild/module.cpp
+++ b/
reactos/tools/rbuild/module.cpp
@@
-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 )