From 9e385314b0917d496d7defc223c725eee03cc135 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Fri, 11 Oct 2019 14:41:58 +0200 Subject: [PATCH] udev: do not hardcode program name --- src/udev/ata_id/ata_id.c | 5 +++-- src/udev/cdrom_id/cdrom_id.c | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/udev/ata_id/ata_id.c b/src/udev/ata_id/ata_id.c index e5a9400eda..deeb939f54 100644 --- a/src/udev/ata_id/ata_id.c +++ b/src/udev/ata_id/ata_id.c @@ -425,9 +425,10 @@ int main(int argc, char *argv[]) { export = 1; break; case 'h': - printf("Usage: ata_id [--export] [--help] \n" + printf("Usage: %s [--export] [--help] \n" " -x,--export print values as environment keys\n" - " -h,--help print this help text\n\n"); + " -h,--help print this help text\n\n", + program_invocation_short_name); return 0; } } diff --git a/src/udev/cdrom_id/cdrom_id.c b/src/udev/cdrom_id/cdrom_id.c index a287901266..75afe4e7c9 100644 --- a/src/udev/cdrom_id/cdrom_id.c +++ b/src/udev/cdrom_id/cdrom_id.c @@ -849,12 +849,13 @@ int main(int argc, char *argv[]) { log_open(); break; case 'h': - printf("Usage: cdrom_id [options] \n" + printf("Usage: %s [options] \n" " -l,--lock-media lock the media (to enable eject request events)\n" " -u,--unlock-media unlock the media\n" " -e,--eject-media eject the media\n" " -d,--debug debug to stderr\n" - " -h,--help print this help text\n\n"); + " -h,--help print this help text\n\n", + program_invocation_short_name); goto exit; default: rc = 1;