degesch: little fixes

This commit is contained in:
Přemysl Eric Janouch 2015-04-26 18:24:19 +02:00
parent 864be7cfc5
commit 950d64d229
1 changed files with 2 additions and 2 deletions

View File

@ -2066,7 +2066,7 @@ make_prompt (struct app_context *ctx, struct str *output)
if (buffer != ctx->global_buffer)
{
str_append_c (output, ' ');
if (!ctx->irc_fd == -1)
if (ctx->irc_fd == -1)
str_append (output, "(disconnected)");
else
{
@ -3167,7 +3167,7 @@ handle_command_quote (struct app_context *ctx, char *arguments)
if (!server_command_check (ctx, "quote"))
return true;
irc_send (ctx, arguments);
irc_send (ctx, "%s", arguments);
return true;
}