2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Work around a bug in UBSan that is causing CI failures.

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116834
This commit is contained in:
Todd C. Miller 2024-11-18 11:05:48 -07:00
parent da20ccec08
commit f8987fc0bb

View File

@ -1678,9 +1678,9 @@ read_keyboard(int fd, int what, void *v)
static void
display_usage(FILE *fp)
{
fprintf(fp, _("usage: %s [-hnRS] [-d dir] [-m num] [-s num] ID\n"),
fprintf(fp, "usage: %s [-hnRS] [-d dir] [-m num] [-s num] ID\n",
getprogname());
fprintf(fp, _("usage: %s [-h] [-d dir] -l [search expression]\n"),
fprintf(fp, "usage: %s [-h] [-d dir] -l [search expression]\n",
getprogname());
}