Missed change for restoring Development directory

This commit is contained in:
deadwood 2021-02-26 15:24:31 +01:00
parent db7364a9b0
commit a66f1269b2
1 changed files with 2 additions and 2 deletions

View File

@ -1071,8 +1071,8 @@ static int copy(const char *src, const char *dst, int flags);
static BOOL valid_dir(const char *dir)
{
/* Don't convert anything in a Developer directory */
if (strcasecmp(dir, "Developer") == 0)
/* Don't convert anything in a Development directory */
if (strcasecmp(dir, "Development") == 0)
return FALSE;
return TRUE;
}