1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

kludgeing: don't autoget files beginning with '.' if dcc_download_path is

home dir.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2800 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-05-16 18:00:47 +00:00 committed by cras
parent e177b3fe94
commit e6aa8415ef

View File

@ -49,6 +49,12 @@ static void sig_dcc_request(GET_DCC_REC *dcc, const char *nickaddr)
!masks_match(SERVER(dcc->server), masks, dcc->nick, nickaddr))
return;
/* don't autoget files beginning with a dot, if download dir is
our home dir (stupid kludge for stupid people) */
if (*dcc->file == '.' &&
strcmp(settings_get_str("dcc_download_path"), "~") == 0)
return;
/* check file size limit, NOTE: it's still possible to send a
bogus file size and then just send what ever sized file.. */
max_size = settings_get_int("dcc_autoget_max_size");