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; }