diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2023-01-03 16:10:02 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2023-01-03 16:10:02 +0200 |
commit | fb0808c450849e00993fa38839f33969a9daf7e8 (patch) | |
tree | 55aca4c3c7dff7e09a13efa6dcfb58d5e91def35 /sql/sql_connect.cc | |
parent | fb41117c907a99d051ac09c229762978373d7eb0 (diff) | |
parent | 8760f6907c51e0e20242a53188be5b62029d6f1a (diff) | |
download | mariadb-git-fb0808c450849e00993fa38839f33969a9daf7e8.tar.gz |
Merge 10.3 into 10.4
Diffstat (limited to 'sql/sql_connect.cc')
-rw-r--r-- | sql/sql_connect.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_connect.cc b/sql/sql_connect.cc index 0346e70a588..1c267e02839 100644 --- a/sql/sql_connect.cc +++ b/sql/sql_connect.cc @@ -891,7 +891,7 @@ int thd_set_peer_addr(THD *thd, return 1; /* The error is set by my_strdup(). */ } thd->main_security_ctx.host_or_ip = thd->main_security_ctx.ip; - if (!(specialflag & SPECIAL_NO_RESOLVE)) + if (!opt_skip_name_resolve) { int rc; |