Commit Briefs

Omar Polo

tag 0.8 "Le Scarpe Volanti" (tags/0.8)


Omar Polo

no aarch64 binaries this time


Omar Polo

[html] changes for 0.8


Omar Polo

typos


Omar Polo

mention the codeberg mirror


Omar Polo

changes for 0.8

and drop every mention of GPG...


Omar Polo

disable landlock

it's currently unused (the net process unfortunately can't sensibly make use of it: breaks the DNS...) In the future I'd like to move the parsers in their own (sandboxed) process, so don't delete the landlock code yet.


Omar Polo

typo




Omar Polo

fix possible NULL deref on gophermap' serialize_link

it's just a typo: instead of looking for the end of the string pointed by path, if look for the end of uri. reached that point, path is NULL. reported by a gcc 11 warning: "argument 1 null where non-null expected"


Omar Polo

add the prototype for scan_scaled too

in 0677399e i've re-added scan_scaled even if unused to reduce the diff with /usr/src. This causes a warning on platform that lacks that functions (everything not OpenBSD) because its prototype is missing.


Omar Polo

don't include linux/prctl.h

can conflict with sys/prctl.h, spotted while trying to build on alpine linux.


Omar Polo

don't allow the history to grow too much + save_session refactoring

add a mechanism that will signal a regeneration of the history file once it reaches the 150% of the HISTORY_CAP. while here refactor save_session, now it's somewhat readable.