Compare commits

...

1 Commits

3 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,8 @@
libisofs-1.5.6.pl01.tar.gz Mon Jun 12 2023
===============================================================================
* Bug fix: On non-GNU/Linux systems ssize_t was not defined in rockridge.h .
Report and fix proposal by Rui Chen.
libisofs-1.5.6.tar.gz Wed Jun 07 2023
===============================================================================
* Bug fix: iso_write_opts_set_part_like_isohybrid() did not cause a MBR

View File

@ -933,7 +933,7 @@ configure.ac
libisofs/libisofs.h
Version leap to 1.5.6
07 Jun 2023 []
07 Jun 2023 [170318c]
ChangeLog
libisofs/changelog.txt
Updated change log
@ -957,6 +957,18 @@ Updated change log
exactly at a block boundary
12 Jun 2023 [branch-1.5.6.pl01: ]
libisofs/rockridge.h
ChangeLog
libisofs/changelog.txt
Bug fix: On non-GNU/Linux systems ssize_t was not defined in rockridge.h .
Report and fix proposal by Rui Chen.
------------------------------- release - libisofs-1.5.6.pl01 - 12 Jun 2023
* Bug fix: On non-GNU/Linux systems ssize_t was not defined in rockridge.h .
Report and fix proposal by Rui Chen.
------------------------------------------------------------------------
Todo about iso_read_image_feature_named() :
Declared but not yet filled:

View File

@ -41,6 +41,9 @@
#include "ecma119.h"
/* For ssize_t */
#include <unistd.h>
#define SUSP_SIG(entry, a, b) ((entry->sig[0] == a) && (entry->sig[1] == b))