Revert "FS: Fix backward conditional logic that prevent unlink() from building in some configurations."

Oops.  It was not backward.  Enable == !Disable.  Negative logic is confusing.

This reverts commit 1fcf353e89.
This commit is contained in:
Gregory Nutt 2017-03-04 08:16:46 -06:00
parent 1fcf353e89
commit 0a192361de
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
#endif #endif
#undef FS_HAVE_PSEUDOFS_OPERATIONS #undef FS_HAVE_PSEUDOFS_OPERATIONS
#if defined(CONFIG_DISABLE_PSEUDOFS_OPERATIONS) && CONFIG_NFILE_STREAMS > 0 #if !defined(CONFIG_DISABLE_PSEUDOFS_OPERATIONS) && CONFIG_NFILE_STREAMS > 0
# define FS_HAVE_PSEUDOFS_OPERATIONS 1 # define FS_HAVE_PSEUDOFS_OPERATIONS 1
#endif #endif