diff options
author | msvensson@pilot.(none) <> | 2007-09-27 08:49:23 +0200 |
---|---|---|
committer | msvensson@pilot.(none) <> | 2007-09-27 08:49:23 +0200 |
commit | 2a1e556081fdf0ad44fe1f410ca7bb6eae52fc16 (patch) | |
tree | 28d2f4ca6c05befb654ea30f9548ff44229edc5f /libmysql/libmysql.c | |
parent | e21bb2640aad40e766328b2016d7c68496113559 (diff) | |
parent | a3c5169d0da9038182c8a91aee4abd88d72f0e07 (diff) | |
download | mariadb-git-2a1e556081fdf0ad44fe1f410ca7bb6eae52fc16.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0-maint
into pilot.(none):/data/msvensson/mysql/mysql-5.0-maint
Diffstat (limited to 'libmysql/libmysql.c')
-rw-r--r-- | libmysql/libmysql.c | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index 14b1a682b49..a3919974a97 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -133,10 +133,23 @@ int STDCALL mysql_server_init(int argc __attribute__((unused)), { struct servent *serv_ptr; char *env; - if ((serv_ptr = getservbyname("mysql", "tcp"))) - mysql_port = (uint) ntohs((ushort) serv_ptr->s_port); - if ((env = getenv("MYSQL_TCP_PORT"))) - mysql_port =(uint) atoi(env); + + /* + if builder specifically requested a default port, use that + (even if it coincides with our factory default). + only if they didn't do we check /etc/services (and, failing + on that, fall back to the factory default of 3306). + either default can be overridden by the environment variable + MYSQL_TCP_PORT, which in turn can be overridden with command + line options. + */ + +#if MYSQL_PORT_DEFAULT == 0 + if ((serv_ptr = getservbyname("mysql", "tcp"))) + mysql_port = (uint) ntohs((ushort) serv_ptr->s_port); +#endif + if ((env = getenv("MYSQL_TCP_PORT"))) + mysql_port =(uint) atoi(env); } #endif } |