aboutsummaryrefslogtreecommitdiffstats
path: root/g10
diff options
context:
space:
mode:
Diffstat (limited to 'g10')
-rw-r--r--g10/ChangeLog5
-rw-r--r--g10/tdbio.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 4aa1ed114..5df38e5c2 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-01 Werner Koch <[email protected]>
+
+ * tdbio.c (open_db) [!EROFS]: Move closing parens out of the
+ ifdef. Reported by Ken Takusagawa.
+
2008-06-25 Marcus Brinkmann <[email protected]>
* gpg.c (enum cmd_and_opt_values): Remove option
diff --git a/g10/tdbio.c b/g10/tdbio.c
index 93628499e..231f451e7 100644
--- a/g10/tdbio.c
+++ b/g10/tdbio.c
@@ -603,8 +603,9 @@ open_db()
db_fd = open (db_name, O_RDWR | MY_O_BINARY );
if (db_fd == -1 && (errno == EACCES
#ifdef EROFS
- || errno == EROFS)
+ || errno == EROFS
#endif
+ )
) {
db_fd = open (db_name, O_RDONLY | MY_O_BINARY );
if (db_fd != -1)