diff options
author | unknown <miguel@hegel.local> | 2002-03-26 18:47:50 -0300 |
---|---|---|
committer | unknown <miguel@hegel.local> | 2002-03-26 18:47:50 -0300 |
commit | 3136a7aeeae947d212cfe14f366e93f327a01faf (patch) | |
tree | efe103654fc013eec146ed4d6d30bafcae65e0a9 /sql/mysqld.cc | |
parent | bbedc5ebbf8951c3b6a3d4047c40e7934774d58a (diff) | |
download | mariadb-git-3136a7aeeae947d212cfe14f366e93f327a01faf.tar.gz |
Fix compiler error on mysqld.cc
sql/mysqld.cc:
Fix compiler error adding a missed )
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 1fb39e56840..b82614107ee 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -2003,7 +2003,7 @@ The server will not act as a slave."); #ifdef __NT__ if (hPipe == INVALID_HANDLE_VALUE && - (!have_tcpip || opt_disable_networking) + (!have_tcpip || opt_disable_networking)) { sql_print_error("TCP/IP or --enable-named-pipe should be configured on NT OS"); unireg_abort(1); |