gdbus-tool: Actually use argv[0] basename as program name

We initialize it but never actually use.
This commit is contained in:
Marco Trevisan (Treviño) 2021-04-27 15:41:57 +02:00
parent 232d008ec8
commit 1000acade7

View File

@ -145,7 +145,7 @@ modify_argv0_for_command (gint *argc, gchar **argv[], const gchar *command)
remove_arg (1, argc, argv);
program_name = g_path_get_basename ((*argv)[0]);
s = g_strdup_printf ("%s %s", (*argv)[0], command);
s = g_strdup_printf ("%s %s", program_name, command);
(*argv)[0] = s;
g_free (program_name);
}