1
1

* extfs.c (extfs_open_archive): Fixes bug in extfs, which showed

'Inconsistent extfs archive' on small archives and diffs.
        QNX 6.x (QNX Neutrino) specific
Этот коммит содержится в:
Andrew V. Samoilov 2004-09-17 11:44:43 +00:00
родитель 05cea9cabf
Коммит 312da833ff
2 изменённых файлов: 13 добавлений и 2 удалений

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

@ -1,3 +1,11 @@
2004-09-17 Pavel S. Shirshov <pavelsh@mail.ru>
* extfs.c (extfs_open_archive): Fixes bug in extfs, which showed
'Inconsistent extfs archive' on small archives and diffs.
QNX 6.x (QNX Neutrino) specific
Based on patch from Dmitry Alexeyev <dmi_a@qnx.org.ru>
2004-09-06 Jakub Jelinek <jakub@redhat.com>
* fish.c (fish_file_store): Call got_interrupt() instead of testing

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

@ -255,6 +255,9 @@ extfs_open_archive (int fstype, const char *name, struct archive **pparc)
}
return NULL;
}
#ifdef ___QNXNTO__
setvbuf (result, NULL, _IONBF, 0);
#endif
current_archive = g_new (struct archive, 1);
current_archive->fstype = fstype;