Skip to content

Commit

Permalink
Work around a bug in UBSan that is causing CI failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
millert committed Nov 18, 2024
1 parent da20cce commit f8987fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/sudoers/sudoreplay.c
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}

Expand Down

0 comments on commit f8987fc

Please sign in to comment.