# # # patch "schema_migration.cc" # from [a373ed3f47b83178d5bd34d8252e4733fb272075] # to [bf8b27681d92482c3c40dab4670a5e63b3efc00a] # ============================================================ --- schema_migration.cc a373ed3f47b83178d5bd34d8252e4733fb272075 +++ schema_migration.cc bf8b27681d92482c3c40dab4670a5e63b3efc00a @@ -60,7 +60,7 @@ } static string -lowercase(string const & in) +lowercase_facet(string const & in) { I(40==in.size()); const int sz=40; @@ -94,7 +94,7 @@ Botan::Pipe p(new Botan::Hash_Filter("SHA-1"), new Botan::Hex_Encoder()); p.process_msg(in); - ident = lowercase(p.read_all_as_string()); + ident = lowercase_facet(p.read_all_as_string()); }