uxsftpserver.c: do not let Clang think we append integer to string

This commit is contained in:
Pavel I. Kryukov 2018-10-21 15:00:09 +03:00 коммит произвёл Simon Tatham
Родитель fafb898891
Коммит 1806b71241
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -667,7 +667,7 @@ static void uss_readdir(SftpServer *srv, SftpReplyBuilder *reply,
longnamebuf = dupprintf(
"%s %3u %-8s %-8s %8s %.3s %2d %02d:%02d %s",
perms, (unsigned)st.st_nlink, user, group, sizebuf,
("JanFebMarAprMayJunJulAugSepOctNovDec" + 3*tm.tm_mon),
(&"JanFebMarAprMayJunJulAugSepOctNovDec"[3*tm.tm_mon]),
tm.tm_mday, tm.tm_hour, tm.tm_min, de->d_name);
longname = ptrlen_from_asciz(longnamebuf);