diff options
author | Ted Gould <ted@canonical.com> | 2009-07-22 17:22:50 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-07-22 17:22:50 -0500 |
commit | 6cb0ee80ac8eecb7a151bc9dd659c86d46672ea4 (patch) | |
tree | 0207334a061553d8db71f052f3cd9d3b0077d9ac | |
parent | 60b5dcf45275083610f29ea83500fb9d4f9f7ed0 (diff) | |
parent | 93015d3c3439951ecc5019c97bf6a7226983600f (diff) | |
download | ayatana-indicator-session-6cb0ee80ac8eecb7a151bc9dd659c86d46672ea4.tar.gz ayatana-indicator-session-6cb0ee80ac8eecb7a151bc9dd659c86d46672ea4.tar.bz2 ayatana-indicator-session-6cb0ee80ac8eecb7a151bc9dd659c86d46672ea4.zip |
Wrong function, building a path instead of a filename. Err.
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/session-service.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 71395e3..e301bc5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-sus (0.1~ppa2~indicator9ubuntu3) UNRELEASED; urgency=low + + * Wrong function, building a path instead of a filename. Err. + + -- Ted Gould <ted@ubuntu.com> Wed, 22 Jul 2009 17:22:34 -0500 + indicator-sus (0.1~ppa2~indicator9ubuntu2) karmic; urgency=low * Adding a helper for the logout window. And setting things diff --git a/src/session-service.c b/src/session-service.c index b301baf..c8b3170 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -15,7 +15,7 @@ static GMainLoop * mainloop = NULL; static void show_dialog (DbusmenuMenuitem * mi, gchar * type) { - gchar * helper = g_build_path(LIBEXECDIR, "gtk-logout-helper", NULL); + gchar * helper = g_build_filename(LIBEXECDIR, "gtk-logout-helper", NULL); gchar * dialog_line = g_strdup_printf("%s --%s", helper, type); g_free(helper); |