diff options
Diffstat (limited to 'degesch.c')
-rw-r--r-- | degesch.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |