Change bsdi define to __bsdi__

This commit is contained in:
Bruce Momjian 2010-05-15 10:08:28 +00:00
parent de4e18a34d
commit 5781d96dc3
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ pg_scandir(migratorContext *ctx, const char *dirname,
* autoconf doesn't have a suitable builtin test and it seems overkill
* to add one just to avoid a warning.
*/
#elif defined(freebsd) || defined(bsdi) || defined(__darwin__) || defined(openbsd)
#elif defined(freebsd) || defined(__bsdi__) || defined(__darwin__) || defined(openbsd)
/* no const */
return scandir(dirname, namelist, (int (*) (struct dirent *)) selector, NULL);
#else