diff options
author | Werner Koch <wk@gnupg.org> | 1998-12-29 14:47:31 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-12-29 14:47:31 +0100 |
commit | 6e08b235cb73d3c8e83218a94f9a2d356f2709ac (patch) | |
tree | c5a0a706b32d530cb661a62ec9439109bce5a75c /g10/tdbio.c | |
parent | See ChangeLog: Wed Dec 23 17:12:24 CET 1998 Werner Koch (diff) | |
download | gnupg2-6e08b235cb73d3c8e83218a94f9a2d356f2709ac.tar.xz gnupg2-6e08b235cb73d3c8e83218a94f9a2d356f2709ac.zip |
See ChangeLog: Tue Dec 29 14:41:47 CET 1998 Werner Koch
Diffstat (limited to 'g10/tdbio.c')
-rw-r--r-- | g10/tdbio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/g10/tdbio.c b/g10/tdbio.c index f7ba36f7c..094f23c87 100644 --- a/g10/tdbio.c +++ b/g10/tdbio.c @@ -229,7 +229,7 @@ put_record_into_cache( ulong recno, const char *data ) cache_entries++; return 0; } - log_info(_("trustdb transaction to large\n")); + log_info(_("trustdb transaction too large\n")); return G10ERR_RESOURCE_LIMIT; } if( dirty_count ) { @@ -460,9 +460,9 @@ tdbio_set_dbname( const char *new_dbname, int create ) fname, g10_errstr(rc)); /* and read again to check that we are okay */ if( tdbio_read_record( 0, &rec, RECTYPE_VER ) ) - log_fatal( _("%s: invalid trust-db created\n"), db_name ); + log_fatal( _("%s: invalid trustdb created\n"), db_name ); - log_info(_("%s: trust-db created\n"), db_name); + log_info(_("%s: trustdb created\n"), db_name); return 0; } @@ -503,7 +503,7 @@ open_db() if( db_fd == -1 ) log_fatal( _("%s: can't open: %s\n"), db_name, strerror(errno) ); if( tdbio_read_record( 0, &rec, RECTYPE_VER ) ) - log_fatal( _("%s: invalid trust-db\n"), db_name ); + log_fatal( _("%s: invalid trustdb\n"), db_name ); atexit( cleanup ); } |