diff options
author | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2017-03-04 21:43:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 21:43:21 +0100 |
commit | 29f27cfb39a86094af746c1cd654d33436d29479 (patch) | |
tree | ceda3b35ac8830275c9d1f10d07e7dc8bfcb1ac2 /src/core/misc.h | |
parent | dc99f8d7a5f90eebd4c52cef8d186bf20e2a9912 (diff) | |
parent | 027acffb4208d7e6ba8e229cbf6c3dae6f5dabaf (diff) | |
download | irssi-29f27cfb39a86094af746c1cd654d33436d29479.zip |
Merge pull request #658 from LemonBoy/dcc-autoaccept
Quote the filename when dcc requests are auto accepted.
Diffstat (limited to 'src/core/misc.h')
-rw-r--r-- | src/core/misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/misc.h b/src/core/misc.h index 00637da0..9e620169 100644 --- a/src/core/misc.h +++ b/src/core/misc.h @@ -88,8 +88,8 @@ char *stristr_full(const char *data, const char *key); char *ascii_strup(char *str); char *ascii_strdown(char *str); -/* Escape all '"', "'" and '\' chars with '\' */ -char *escape_string(const char *str); +/* Escape all the characters in `what' with a backslash */ +char *escape_string(const char *str, const char *what); /* convert all low-ascii (<32) to ^<A..> combinations */ char *show_lowascii(const char *str); |