Clean up error handling.

This commit is contained in:
Michael Jumper 2013-07-22 16:12:39 -07:00
parent 98dd9d2c69
commit e049d35583

View File

@ -398,10 +398,11 @@ int main(int argc, char* argv[]) {
#else
else if (opt == 'C' || opt == 'K') {
fprintf(stderr,
"This %s does not have SSL/TLS support compiled in.\n"
"If you wish to enable support for the -%c option, please install libssl and "
"recompile %s.\n",
argv[0], opt, argv[0]);
"This guacd does not have SSL/TLS support compiled in.\n\n"
"If you wish to enable support for the -%c option, please install libssl and\n"
"recompile guacd.\n",
opt);
exit(EXIT_FAILURE);
}
#endif