-
6bb95c88
by Allan McRae at 2024-03-05T07:25:11+10:00
Fix error messages for unknown key in databases
Signed-off-by: Allan McRae <allan@archlinux.org>
-
d7f3ce12
by Allan McRae at 2024-03-06T10:23:33+00:00
Manage releases through gitlab
Also provide an example for how to check for errors in translations
Signed-off-by: Allan McRae <allan@archlinux.org>
-
95f148c2
by Allan McRae at 2024-03-06T10:23:33+00:00
Update website to reflect gitlab usage
Signed-off-by: Allan McRae <allan@archlinux.org>
-
5e049626
by Ivan Shapovalov at 2024-03-13T04:32:42+01:00
make_aligned_titles: pass the correct buffer length
The third parameter to wcstombs() is the length of the output buffer
(first parameter) in bytes. Take the correct sizeof() here.
This is not a problem in practice, but prevents _FORTIFY_SOURCE=3 from
detecting a possible output buffer overflow (as the source buffer is
bigger than the destination).
Fixes #104.
Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>
-
0571ee82
by Christian Heusel at 2024-03-14T01:20:53+00:00
repo-add: fix parseopts missing arg to -k/--key
The current code treats -k/--key as a binary option which later makes it
fail parsing the argument as then the end of arguments '--' is treated
as the GPGKEY. We fix this by adding the appropriate specifier to the
long and shortopt.
Closes https://gitlab.archlinux.org/pacman/pacman/-/issues/105
Fixes: 4f43ce3e ("repo-add: use parseopts from libmakepkg")
Signed-off-by: Christian Heusel <christian@heusel.eu>
-
111eed02
by Allan McRae at 2024-03-14T01:50:05+00:00
Fix unused result warnings
Not actually a fix, as the pacman output will still be weird and
we will not gracefully exit, but it does print an error message...
Signed-off-by: Allan McRae <allan@archlinux.org>