pali
                                            pali
                                        
                                    > Tried with a BD-R and CD-R `cdrwtool` is for CD-R**W** discs only.
> `Command failed: a1 11 00 00 00 00 00 00 00 00 00 00 - sense 05.30.06` * command a1 11 means to do _fast blank operation_ * sense...
Uff, maybe some of the options could be used also for CD-R (like printing track information). But blanking media is RW operation.
BD-RE uses UDF in overwritable mode, like DVD-RAM. So formatting to UDF does not require special access to optical drive (like for CD-RW via `cdrwtool`) and therefore you can use...
Recordable media types are not supported directly for writing by tools which are parted of the udftools. Just mkudffs can prepare (empty) UDF disk image for recordable media type, but...
`removeRoute()` always release memory from passed argument: ```c static int removeRoute(struct RouteTable* croute) { ... // Free the memory, and set the route to NULL... free(croute); croute = NULL; logRouteTable("Remove...
> rttable.c:750:21: runtime error: shift exponent 4294967295 is too large for 32-bit type 'int' > SUMMARY: UndefinedBehaviorSanitizer: undefined-behavior rttable.c:750:21 in On line 750 is: https://github.com/pali/igmpproxy/blob/865a73c8b507c2df245dea232ba2062e1473e603/src/rttable.c#L745-L754 And _shift exponent is too...
Fixed for DBD::MariaDB (https://github.com/gooddata/DBD-MariaDB) in pull request: https://github.com/gooddata/DBD-MariaDB/pull/57
The purpose of mkudffs `--read-only` is to set into UDF filesystem "metadata" some flags which treat filesystem as readonly. I agree that this option as alone is not very useful....
You are right. I was planning to write some `udftune` tool (based on the the udflabel code) which can set different flags like this but I have not done it...