You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the autodeflate setup code looks like this:
switch (autodeflate) {
...
#if defined(HAVE_LZO)
case COMPRESS_LZO1X:
compressorname = COMPRESSOR_NAME_LZO;
break; // nothing is set up; is this intentional ?
#endifcase COMPRESS_FZFZ:
compressorname = COMPRESSOR_NAME_FZLZ;
[[fallthrough]];
case COMPRESS_FZ4L:
compressorname = COMPRESSOR_NAME_FZ4L;
[[fallthrough]];
case COMPRESS_FZ4H: {
compressorname = COMPRESSOR_NAME_FZ4H; // compressor name is always overriden to FZ4H
...
}
...
}
Jmsg(ctx, M_INFO, T_("autoxflate-sd: Compressor on device %s is %s\n"),
dcr->dev_name, compressorname);
We need to
Check if lzo compression works
Fix the compressor name output if any FZ* algorithm is chosen.
This can easily be done by checking compressorname == COMPRESSOR_NAME_UNSET before each assignment.
The text was updated successfully, but these errors were encountered:
Currently the autodeflate setup code looks like this:
We need to
This can easily be done by checking
compressorname == COMPRESSOR_NAME_UNSET
before each assignment.The text was updated successfully, but these errors were encountered: