Quick fix for the previous commit - use && instead of ||.

This commit is contained in:
Pavel Roskin 2001-07-27 21:16:30 +00:00
parent babf238550
commit e642a22c53
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ the need to embed this logic into configure.in.
# undef USE_EXT2FSLIB
#endif
#if defined (HAVE_SOCKETPAIR) || !defined (HAVE_X)
#if defined (HAVE_SOCKETPAIR) && !defined (HAVE_X)
# define WITH_BACKGROUND
#endif