mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 21:16:15 +01:00
gdbus-tool: Actually use argv[0] basename as program name
We initialize it but never actually use.
This commit is contained in:
parent
232d008ec8
commit
1000acade7
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user