This commit is contained in:
David Rose 2003-02-15 18:29:10 +00:00
parent ed77186e26
commit c4e18da06f

View File

@ -1960,7 +1960,10 @@ expand_makeguid(const string &params) {
}
// Convert the entire GUID string to uppercased letters.
transform(guid.begin(), guid.end(), guid.begin(), toupper);
string::iterator si;
for (si = guid.begin(); si != guid.end(); ++si) {
(*si) = toupper(*si);
}
return guid;
}