summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorailin-nemui <ailin-nemui@users.noreply.github.com>2017-03-08 09:45:40 +0100
committerGitHub <noreply@github.com>2017-03-08 09:45:40 +0100
commitd57c64adeb7b251c5347212239ed0d7b7abe5547 (patch)
tree83bb4c20dbfe011acbca8b49efebda9326451129 /src
parentddba68ad77365748cd1f65fd53ea3b820ebd8567 (diff)
parent7bd1b80687cc97010094de0d398b429480e0a608 (diff)
downloadirssi-d57c64adeb7b251c5347212239ed0d7b7abe5547.zip
Merge pull request #667 from ailin-nemui/fix-dcc-get
fix dcc get fixes #656
Diffstat (limited to 'src')
-rw-r--r--src/irc/dcc/dcc-autoget.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/irc/dcc/dcc-autoget.c b/src/irc/dcc/dcc-autoget.c
index de23a5d1..dd12f438 100644
--- a/src/irc/dcc/dcc-autoget.c
+++ b/src/irc/dcc/dcc-autoget.c
@@ -23,6 +23,7 @@
#include "masks.h"
#include "settings.h"
#include "servers.h"
+#include "misc.h"
#include "dcc-get.h"
@@ -30,7 +31,7 @@ static void sig_dcc_request(GET_DCC_REC *dcc, const char *nickaddr)
{
struct stat statbuf;
const char *masks;
- char *str, *file;
+ char *str, *file, *esc_arg;
int max_size;
if (!IS_DCC_GET(dcc)) return;
@@ -68,11 +69,13 @@ static void sig_dcc_request(GET_DCC_REC *dcc, const char *nickaddr)
/* ok. but do we want/need to resume? */
file = dcc_get_download_path(dcc->arg);
+ esc_arg = escape_string(dcc->arg);
str = g_strdup_printf(settings_get_bool("dcc_autoresume") &&
stat(file, &statbuf) == 0 ?
- "RESUME %s %s" : "GET %s %s",
- dcc->nick, dcc->arg);
+ "RESUME %s \"%s\"" : "GET %s \"%s\"",
+ dcc->nick, esc_arg);
signal_emit("command dcc", 2, str, dcc->server);
+ g_free(esc_arg);
g_free(file);
g_free(str);
}