|
@@ -203,8 +203,8 @@ int main(void){
|
|
|
ONION_ERROR("Cant create db connection: %s", mysql_error(data.db[i]));
|
|
|
return 1;
|
|
|
}
|
|
|
- if (mysql_real_connect(data.db[i], "localhost", "benchmarkdbuser",
|
|
|
- "benchmarkdbpass", "hello_world", 0, NULL, 0) == NULL) {
|
|
|
+ if (mysql_real_connect(data.db[i], "localhost",
|
|
|
+ "benchmarkdbuser", "benchmarkdbpass", "hello_world", 0, NULL, 0) == NULL) {
|
|
|
ONION_ERROR("Error %u: %s\n", mysql_errno(data.db[i]), mysql_error(data.db[i]));
|
|
|
return 1;
|
|
|
}
|