Re: Passphrase of GPG-generated key not accepted
Marcus Brinkmann <[email protected]> Mon, 07 Nov 2005 23:00:41 +0100
| Newsgroups | gmane.comp.encryption.gpg.gpa.devel |
|---|---|
| Message-ID | <87mzkgyv7a.wl%[email protected]> |
At Sat, 13 Aug 2005 08:47:30 +0200, Daniel Link <[email protected]> wrote: > In addition GPA crashes when I try to backup a key and not enter a > filename manually but select file and directory (segfault). I tried but > didn't manage to compile from sources with debugging symbols. There's no > configure option and I have no idea which file I have to alter / which > arguments I have to pass to the compiler to do so. I have applied the following fix. Thanks, Marcus 2005-11-07 Marcus Brinkmann <[email protected]> * gpabackupop.c (export_browse): Pass ENTRY as parent to gpa_get_save_file_name. Index: gpabackupop.c =================================================================== --- gpabackupop.c (Revision 715) +++ gpabackupop.c (Arbeitskopie) @@ -253,7 +253,7 @@ GtkWidget *entry = param; gchar *filename; - filename = gpa_get_save_file_name (NULL, _("Backup key to file"), NULL); + filename = gpa_get_save_file_name (entry, _("Backup key to file"), NULL); if (filename) { gchar *utf8_filename = g_filename_to_utf8 (filename, -1, NULL, NULL,