multicall: expose argv0, use in applets

This commit is contained in:
Ariadne Conill 2020-07-24 04:52:15 -06:00
parent e0a7444640
commit 8714dab11d
4 changed files with 8 additions and 6 deletions

View file

@ -252,13 +252,13 @@ ifquery_main(int argc, char *argv[])
if (!lif_state_read_path(&state, state_file))
{
fprintf(stderr, "ifquery: could not parse %s\n", state_file);
fprintf(stderr, "%s: could not parse %s\n", argv0, state_file);
return EXIT_FAILURE;
}
if (!lif_interface_file_parse(&collection, interfaces_file))
{
fprintf(stderr, "ifquery: could not parse %s\n", interfaces_file);
fprintf(stderr, "%s: could not parse %s\n", argv0, interfaces_file);
return EXIT_FAILURE;
}
@ -295,7 +295,7 @@ ifquery_main(int argc, char *argv[])
if (iface == NULL)
{
fprintf(stderr, "ifquery: unknown interface %s\n", argv[idx]);
fprintf(stderr, "%s: unknown interface %s\n", argv0, argv[idx]);
return EXIT_FAILURE;
}