From 950d64d229e6740a2e25c8aa7d8bdd770b30054b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 26 Apr 2015 18:24:19 +0200 Subject: [PATCH] degesch: little fixes --- degesch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/degesch.c b/degesch.c index d1b7dbc..e1741f7 100644 --- a/degesch.c +++ b/degesch.c @@ -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; }