1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 16:43:44 +02:00

This was conditionally included if HAVE_MYSQL_REAL_CONNECT was defined.

This commit is contained in:
foobar
2001-11-02 07:08:48 +00:00
parent 9ba2c90e16
commit 5a81882c03

View File

@@ -55,14 +55,16 @@ static int le_result, le_link, le_plink;
#include "php_ini.h"
# if HAVE_MYSQL_MYSQL_H
# include <mysql/mysql.h>
# else
# include <mysql.h>
# endif
#if HAVE_MYSQL_MYSQL_H
# include <mysql/mysql.h>
#else
# include <mysql.h>
#endif
#ifdef HAVE_ERRMSG_H
#include <errmsg.h>
#ifdef HAVE_MYSQL_REAL_CONNECT
# ifdef HAVE_ERRMSG_H
# include <errmsg.h>
# endif
#endif
#define SAFE_STRING(s) ((s)?(s):"")