Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
45bd5ee6
Commit
45bd5ee6
authored
Dec 24, 2004
by
ram@gw.mysql.r18.ru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A fix (bug #5652: [patch] tcpwrapper support is broken on systems using an unmodified tcpwrapper).
parent
d1101462
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
12 deletions
+3
-12
sql/mysqld.cc
sql/mysqld.cc
+3
-12
No files found.
sql/mysqld.cc
View file @
45bd5ee6
...
...
@@ -107,15 +107,6 @@ extern "C" { // Because of SCO 3.2V4.2
int
allow_severity
=
LOG_INFO
;
int
deny_severity
=
LOG_WARNING
;
#ifdef __STDC__
#define my_fromhost(A) fromhost(A)
#define my_hosts_access(A) hosts_access(A)
#define my_eval_client(A) eval_client(A)
#else
#define my_fromhost(A) fromhost()
#define my_hosts_access(A) hosts_access()
#define my_eval_client(A) eval_client()
#endif
#endif
/* HAVE_LIBWRAP */
#ifdef HAVE_SYS_MMAN_H
...
...
@@ -3240,8 +3231,8 @@ extern "C" pthread_handler_decl(handle_connections_sockets,
struct
request_info
req
;
signal
(
SIGCHLD
,
SIG_DFL
);
request_init
(
&
req
,
RQ_DAEMON
,
libwrapName
,
RQ_FILE
,
new_sock
,
NULL
);
my_
fromhost
(
&
req
);
if
(
!
my_
hosts_access
(
&
req
))
fromhost
(
&
req
);
if
(
!
hosts_access
(
&
req
))
{
/*
This may be stupid but refuse() includes an exit(0)
...
...
@@ -3249,7 +3240,7 @@ extern "C" pthread_handler_decl(handle_connections_sockets,
clean_exit() - same stupid thing ...
*/
syslog
(
deny_severity
,
"refused connect from %s"
,
my_
eval_client
(
&
req
));
eval_client
(
&
req
));
/*
C++ sucks (the gibberish in front just translates the supplied
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment