1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-03-17 21:18:00 +02:00

add double quotes to elog message about missing external directory

This commit is contained in:
Grigory Smolkin 2019-04-28 01:04:21 +03:00
parent 6974eb8958
commit e51398e256

View File

@ -479,7 +479,7 @@ dir_list_file(parray *files, const char *root, bool exclude, bool omit_symlink,
{
/* For external directory this is not ok */
if (external_dir_num > 0)
elog(ERROR, "External directory is not found: %s", root);
elog(ERROR, "External directory is not found: \"%s\"", root);
else
return;
}