degesch: fix some remaining print_*()

This commit is contained in:
Přemysl Eric Janouch 2015-04-18 17:50:56 +02:00
parent cbda184461
commit 3bf1ffa559
1 changed files with 5 additions and 6 deletions

View File

@ -1185,8 +1185,7 @@ ca_error:
}
// Only inform the user if we're not actually verifying
// FIXME: print to the server buffer
print_warning ("%s", error->message);
buffer_send_error (ctx, ctx->server_buffer, "%s", error->message);
error_free (error);
return true;
}
@ -1210,13 +1209,13 @@ irc_initialize_ssl (struct app_context *ctx, struct error **e)
{
char *path = resolve_config_filename (ssl_cert);
if (!path)
// FIXME: print to the global buffer
print_error ("%s: %s", "cannot open file", ssl_cert);
buffer_send_error (ctx, ctx->global_buffer,
"%s: %s", "Cannot open file", ssl_cert);
// XXX: perhaps we should read the file ourselves for better messages
else if (!SSL_use_certificate_file (ctx->ssl, path, SSL_FILETYPE_PEM)
|| !SSL_use_PrivateKey_file (ctx->ssl, path, SSL_FILETYPE_PEM))
// FIXME: print to the global buffer
print_error ("%s: %s", "setting the SSL client certificate failed",
buffer_send_error (ctx, ctx->global_buffer,
"%s: %s", "Setting the SSL client certificate failed",
ERR_error_string (ERR_get_error (), NULL));
free (path);
}