Fix a few bugs introduced when merging features

This commit is contained in:
Jaime Casanova
2012-06-15 09:40:09 -05:00
parent 64fce88e99
commit 9e10987b90
2 changed files with 9 additions and 11 deletions

View File

@@ -231,7 +231,7 @@ is_pg_dir(char *dir)
return true;
// test tablespace dir
sprintf(path, "ls %s/PG_9.0_*/ -I*", dir);
sprintf(path, "ls %s/PG_*/ -I*", dir);
r = system(path);
if (r == 0)
return true;