Skip to content

Commit d6eb31f

Browse files
committed
Fix error message in keyring_file.c
The colon was on the wrong side of the space.
1 parent ce63840 commit d6eb31f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/pg_tde/src/keyring/keyring_file.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ set_key_by_name(GenericKeyring *keyring, KeyInfo *key)
119119
{
120120
ereport(ERROR,
121121
errcode_for_file_access(),
122-
errmsg("Failed to open keyring file %s :%m", file_keyring->file_name));
122+
errmsg("Failed to open keyring file %s: %m", file_keyring->file_name));
123123
}
124124
/* Write key to the end of file */
125125
curr_pos = lseek(fd, 0, SEEK_END);

0 commit comments

Comments
 (0)