This has been fixed in master for quite some time.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Jul 1 2011
Apr 27 2011
Feb 23 2011
Fixed with with commit d0a9b8a
Oh well, we use an old copy of gpg-zip.1 from Debian for 1.4. I replaced it
with a texinfo generated file from master. Commit 75d62be.
Well, not a functional bug. I'll fix it in master.
Feb 16 2011
Oct 12 2010
Aug 25 2010
Aug 19 2010
I fixed that in the README files but won't change it all over the project tree.
Aug 11 2010
Jun 17 2010
Mar 25 2010
Feb 11 2010
Given that the FAQ is entirely out of date, I will add this to the BUGS section:
Feb 2 2010
In card edit it is:
Changed in all branches (svn rev 5256).
The prompts are now:
Jan 30 2010
There is further a grammar:
Jan 29 2010
Taking a look at the code, it would require to adjust
Fixed in SVN 5253. Thanks.
Jan 22 2010
Patch attached.
May I ask for the status? Seems, there were no objections.
Agreed.
Dec 21 2009
Well, should be implemented.
2.0.14 released thus closing.
2.0.14 has been released - closing.
Thanks. Applied to SVN.
Dec 17 2009
Fixed in all branches. rev. 5236. Patch for 1.4.10 below:
Dec 16 2009
I don't think it is wise to change results returned from the backend engine too
much in GPGME. It makes it more confusing to see what's going on by giving
different results for essentially the same operation.
Dec 15 2009
This patch fixes it for me. The problem is the order in that the home directory
is created. Usually it is done while creating a new keyring. Due to
--no-default-keyring no keyring is created and thus when we need to check the
trust the code there creates the directory and failed. I am not sure why I was
not able to replicate it yesterday.
- g10/tdbio.c (revision 5221)
+++ g10/tdbio.c (working copy)
@@ -521,7 +521,8 @@
*p = 0; if( access( fname, F_OK ) ) { try_make_homedir( fname );
- log_fatal( _("%s: directory does not exist!\n"), fname );
+ if (access (fname, F_OK ))
+ log_fatal (_("%s: directory does not exist!\n"), fname);
} *p = save_slash;
I don't understand the code either. I introduced it 10 years ago on Dec 4 when
I consolidated the make home directory logic. Obviously that code path was
never tested. The previous code called log_fatal only if the home directory
name did not end in ".gnupg". A simple fix would be to add another access test
after try_make_homedir.
Dec 14 2009
And the difference is made by the --no-default-keyring switch. Removing it from
the command makes it work too.
In g10/tdbio.c the code is:
It is reproducible here. But the result depends. First what you asked for:
Tested with gpg 1.4.8 and the current SVN versions of 1.4.x and 2.1.x.
All yield the same output.
Sorry, I can't replicate this:
Dec 13 2009
Sorry, you already fixed this. Closing myself.
Dec 11 2009
Dec 4 2009
I don't think this is a proper solution. --default-key has the same problem as
--local-user. What we can do is to fail if a key has been specified in a
non-unique way. Selecting one by chance is a Bad Thing.