aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJedi <[email protected]>2013-04-25 07:33:33 +0000
committerWerner Koch <[email protected]>2013-04-25 07:33:33 +0000
commit42c44e9ccd266b92d2a0c0cb29360db232009714 (patch)
treed0094819029f42d37147f417455ec88cf6a19adf
parentUpdate Traditional Chinese translation. (diff)
downloadgnupg-42c44e9ccd266b92d2a0c0cb29360db232009714.tar.gz
gnupg-42c44e9ccd266b92d2a0c0cb29360db232009714.zip
Fix a typo and a wrong code indentation.
-- Reported-by: NIIBE Yutaka <[email protected]>
-rw-r--r--NEWS2
-rw-r--r--g10/call-agent.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 166b871d2..9ead9bf10 100644
--- a/NEWS
+++ b/NEWS
@@ -3,7 +3,7 @@ Noteworthy changes in version 2.0.20 (unreleased)
* The hash algorithm is now printed for sig records in key listings.
- * Decryption using smartcards keys > 3072 bit does not work.
+ * Decryption using smartcards keys > 3072 bit does now work.
* New meta option ignore-invalid-option to allow using the same
option file by other GnuPG versions.
diff --git a/g10/call-agent.c b/g10/call-agent.c
index 373d8c9b7..f4410fd63 100644
--- a/g10/call-agent.c
+++ b/g10/call-agent.c
@@ -1075,8 +1075,8 @@ agent_scd_pkdecrypt (const char *serialno,
}
rc = assuan_transact (agent_ctx, line,
NULL, NULL, NULL, NULL, NULL, NULL);
- if (rc)
- return rc;
+ if (rc)
+ return rc;
}
init_membuf (&data, 1024);