seahorse/seahorse-missing-sentinel.patch
Vincent Untz 3ee5b58581 Accepting request 27610 from home:vuntz:branches:GNOME:Factory
Copy from home:vuntz:branches:GNOME:Factory/seahorse via accept of submit request 27610 revision 8.
Request was accepted with message:
accept

OBS-URL: https://build.opensuse.org/request/show/27610
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/seahorse?expand=0&rev=73
2009-12-24 15:26:55 +00:00

14 lines
649 B
Diff

Index: seahorse-2.29.4/pgp/seahorse-gpg-options.c
===================================================================
--- seahorse-2.29.4.orig/pgp/seahorse-gpg-options.c
+++ seahorse-2.29.4/pgp/seahorse-gpg-options.c
@@ -215,7 +215,7 @@ parse_home_directory (gpgme_engine_info_
/* If it's not a rooted path then expand */
if (t[0] == '~') {
- gpg_homedir = g_strconcat (g_get_home_dir(), ++t);
+ gpg_homedir = g_strconcat (g_get_home_dir(), ++t, NULL);
} else {
gpg_homedir = g_strdup (t);
}