diff options
author | Werner Koch <[email protected]> | 2015-06-04 15:25:09 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-06-04 15:26:44 +0000 |
commit | 840f807a908ee90cd784009f69e783e2e8f7a2cd (patch) | |
tree | e0ab4f3c4c717a71b18dd1b687d5b96aeca529e2 /g10/tdbdump.c | |
parent | doc: Replace "conventional encryption" by "symmetric encryption". (diff) | |
download | gnupg-840f807a908ee90cd784009f69e783e2e8f7a2cd.tar.gz gnupg-840f807a908ee90cd784009f69e783e2e8f7a2cd.zip |
gpg: Re-indent and improve documentation of g10/tdbio.c
--
Diffstat (limited to 'g10/tdbdump.c')
-rw-r--r-- | g10/tdbdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/g10/tdbdump.c b/g10/tdbdump.c index bf9f3875b..f9a047351 100644 --- a/g10/tdbdump.c +++ b/g10/tdbdump.c @@ -46,8 +46,8 @@ (x) >= 'A' && (x) <= 'F' ? ((x)-'A'+10) : ((x)-'a'+10)) -/**************** - * Wirte a record but die on error +/* + * Write a record; die on error. */ static void write_record( TRUSTREC *rec ) @@ -65,7 +65,7 @@ write_record( TRUSTREC *rec ) * Dump the entire trustdb or only the entries of one key. */ void -list_trustdb( const char *username ) +list_trustdb (const char *username) { TRUSTREC rec; |