Hello,
I'm afraid my corrected patch got lost in the mail, as it didn't make it to the web interface. I'm resending it just in case. Sorry if you receive it twice.
BC
--- gnome-cups-manager-0.25.orig/libgnomecups/gnome-cups-permission.c 2004-08-24 08:39:23.000000000 +0200 +++ gnome-cups-manager-0.25/libgnomecups/gnome-cups-permission.c 2005-03-07 14:47:43.000000000 +0100 @@ -76,20 +76,28 @@ gboolean force_admin, GtkWidget *toplevel) { static char const *su_app[] = { - "gnomesu" + "gksu" }; char const **args = g_new0 (char const *, argc + G_N_ELEMENTS (su_app) + 1 /* app */ + 1 /* null */); unsigned offset, i = 0; GError *err = NULL; - if (force_admin && !gnome_cups_can_admin ()) + if (force_admin && !gnome_cups_can_admin ()){ for (i = 0 ; i < G_N_ELEMENTS (su_app) ; i++) args [i] = (char *)su_app [i]; - offset = i; - app = args [offset++] = gnome_cups_execname (app); - for (i = 0 ; i < argc ; i++) - args [i + offset] = argv [i]; + offset = i; + app = gnome_cups_execname (app); + for (i = 0 ; i < argc ; i++) + app = (char *)g_strjoin((gchar *)" ", (gchar *)app, (gchar *)argv [i], NULL); + args [offset++] = app; + } + else { + offset = i; + app = args [offset++] = gnome_cups_execname (app); + for (i = 0 ; i < argc ; i++) + args [i + offset] = argv [i]; + } g_spawn_async (NULL, (char **)args, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, &err);