mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 00:22:17 +02:00
If /SET dcc_upload_path is empty, we should use the current directory, not
root directory. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2074 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
b3c0778dc4
commit
65c9a361ab
2 changed files with 8 additions and 3 deletions
|
|
@ -155,7 +155,8 @@ static char *dcc_send_get_file(const char *fname)
|
|||
g_free(str);
|
||||
|
||||
path = convert_home(settings_get_str("dcc_upload_path"));
|
||||
str = g_strconcat(path, G_DIR_SEPARATOR_S, fname, NULL);
|
||||
str = *path == '\0' ? g_strdup(fname) :
|
||||
g_strconcat(path, G_DIR_SEPARATOR_S, fname, NULL);
|
||||
g_free(path);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue