1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 19:35:09 +00:00

Applications+IRCClient: Use new format functions.

This commit is contained in:
asynts 2020-09-23 16:31:34 +02:00 committed by Andreas Kling
parent 5ed15a49f2
commit 1cb8be9906
6 changed files with 77 additions and 89 deletions

View file

@ -38,7 +38,7 @@ int main(int argc, char** argv)
}
if (getuid() == 0) {
fprintf(stderr, "Refusing to run as root\n");
warn() << "Refusing to run as root";
return 1;
}
@ -54,17 +54,17 @@ int main(int argc, char** argv)
url = URL::create_with_url_or_path(app->args()[0]);
if (url.protocol().to_lowercase() == "ircs") {
fprintf(stderr, "Secure IRC over SSL/TLS (ircs) is not supported\n");
warn() << "Secure IRC over SSL/TLS (ircs) is not supported";
return 1;
}
if (url.protocol().to_lowercase() != "irc") {
fprintf(stderr, "Unsupported protocol\n");
warn() << "Unsupported protocol";
return 1;
}
if (url.host().is_empty()) {
fprintf(stderr, "Invalid URL\n");
warn() << "Invalid URL";
return 1;
}