diff options
author | kostja@bodhi.local <> | 2006-08-02 13:25:13 +0400 |
---|---|---|
committer | kostja@bodhi.local <> | 2006-08-02 13:25:13 +0400 |
commit | 607838488cffef3dbe5167e6d321d8c2ca704745 (patch) | |
tree | 2209b5a10bbaf3081cb0043017acb4d40decf6cc /sql/udf_example.c | |
parent | 438b94e204d4a916817c545f8a156eb7e4b0ca6e (diff) | |
download | mariadb-git-607838488cffef3dbe5167e6d321d8c2ca704745.tar.gz |
Fix a compilation failiure on QNX
Diffstat (limited to 'sql/udf_example.c')
-rw-r--r-- | sql/udf_example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/udf_example.c b/sql/udf_example.c index 62995085599..a80fce81278 100644 --- a/sql/udf_example.c +++ b/sql/udf_example.c @@ -806,6 +806,7 @@ char *reverse_lookup(UDF_INIT *initid __attribute__((unused)), UDF_ARGS *args, #if defined(HAVE_GETHOSTBYADDR_R) && defined(HAVE_SOLARIS_STYLE_GETHOST) char name_buff[256]; struct hostent tmp_hostent; + int tmp_errno; #endif struct hostent *hp; unsigned long taddr; @@ -845,7 +846,6 @@ char *reverse_lookup(UDF_INIT *initid __attribute__((unused)), UDF_ARGS *args, return 0; } #if defined(HAVE_GETHOSTBYADDR_R) && defined(HAVE_SOLARIS_STYLE_GETHOST) - int tmp_errno; if (!(hp=gethostbyaddr_r((char*) &taddr,sizeof(taddr), AF_INET, &tmp_hostent, name_buff,sizeof(name_buff), &tmp_errno))) |