[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-314-g5ed8e93
by NIIBE Yutaka
cvs at cvs.gnupg.org
Thu Mar 6 08:28:40 CET 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".
The branch, master has been updated
via 5ed8e9335fb886d7ddc86728d8481e5e47485531 (commit)
from 0f38c87f427a155ab5684e18e3b73956f81edfab (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 5ed8e9335fb886d7ddc86728d8481e5e47485531
Author: NIIBE Yutaka <gniibe at fsij.org>
Date: Thu Mar 6 16:23:10 2014 +0900
Fix g10/trust.c.
* g10/trust.c (register_trusted_keyid, register_trusted_key)
(update_ownertrust): Call functions with tdb_.
Signed-off-by: NIIBE Yutaka <gniibe at fsij.org>
diff --git a/g10/trust.c b/g10/trust.c
index 32cd934..c8a1c2c 100644
--- a/g10/trust.c
+++ b/g10/trust.c
@@ -55,7 +55,7 @@ register_trusted_keyid (u32 *keyid)
#ifdef NO_TRUST_MODELS
(void)keyid;
#else
- register_trusted_keyid (keyid);
+ tdb_register_trusted_keyid (keyid);
#endif
}
@@ -66,7 +66,7 @@ register_trusted_key (const char *string)
#ifdef NO_TRUST_MODELS
(void)string;
#else
- register_trusted_key (string);
+ tdb_register_trusted_key (string);
#endif
}
@@ -247,7 +247,7 @@ update_ownertrust (PKT_public_key *pk, unsigned int new_trust)
(void)pk;
(void)new_trust;
#else
- update_ownertrust (pk, new_trust);
+ tdb_update_ownertrust (pk, new_trust);
#endif
}
-----------------------------------------------------------------------
Summary of changes:
g10/trust.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list