#if defined(HAVE_MYSQL_H) || defined(WITH_MYSQLSAM)
authorMatthew Chapman <matty@samba.org>
Tue, 23 Mar 1999 14:14:12 +0000 (14:14 +0000)
committerMatthew Chapman <matty@samba.org>
Tue, 23 Mar 1999 14:14:12 +0000 (14:14 +0000)
should instead have &&.

source/passdb/mysqlpass.c

index 35c82651b7e4e8e45b0c60c374f39c706188c76b..75be8b638b9e9d14e94d418d6ade687028bd38d8 100644 (file)
@@ -21,7 +21,7 @@
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#if defined(HAVE_MYSQL_H) || defined(WITH_MYSQLSAM)
+#if defined(HAVE_MYSQL_H) && defined(WITH_MYSQLSAM)
 
 #include "includes.h"