mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-02-03 14:01:57 +02:00
[Issue #246] correctly exclude nested directories such as 'pgsql_tmp'
This commit is contained in:
parent
28dfccd9bb
commit
46c7dba3bb
@ -613,8 +613,8 @@ dir_check_file(pgFile *file, bool backup_logs)
|
|||||||
*/
|
*/
|
||||||
for (i = 0; pgdata_exclude_dir[i]; i++)
|
for (i = 0; pgdata_exclude_dir[i]; i++)
|
||||||
{
|
{
|
||||||
/* relative path exclude */
|
/* exclude by dirname */
|
||||||
if (strcmp(file->rel_path, pgdata_exclude_dir[i]) == 0)
|
if (strcmp(file->name, pgdata_exclude_dir[i]) == 0)
|
||||||
{
|
{
|
||||||
elog(VERBOSE, "Excluding directory content: %s", file->rel_path);
|
elog(VERBOSE, "Excluding directory content: %s", file->rel_path);
|
||||||
return CHECK_EXCLUDE_FALSE;
|
return CHECK_EXCLUDE_FALSE;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user