diff options
Diffstat (limited to 'lzip.h')
-rw-r--r-- | lzip.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -313,14 +313,10 @@ struct Lzip_trailer struct Cl_options // command-line options { - bool ignore_empty; - bool ignore_marking; bool ignore_trailing; bool loose_trailing; - Cl_options() - : ignore_empty( true ), ignore_marking( true ), - ignore_trailing( true ), loose_trailing( false ) {} + Cl_options() : ignore_trailing( true ), loose_trailing( false ) {} }; @@ -337,8 +333,9 @@ const char * const bad_magic_msg = "Bad magic number (file not in lzip format)." const char * const bad_dict_msg = "Invalid dictionary size in member header."; const char * const corrupt_mm_msg = "Corrupt header in multimember file."; const char * const empty_msg = "Empty member not allowed."; -const char * const marking_msg = "Marking data not allowed."; +const char * const nonzero_msg = "Nonzero first LZMA byte."; const char * const trailing_msg = "Trailing data not allowed."; +const char * const write_error_msg = "Write error"; // defined in decoder.cc int readblock( const int fd, uint8_t * const buf, const int size ); |