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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ddf17601
Commit
ddf17601
authored
Feb 19, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
potential problem fixed afer some reasoning
parent
65ec6a41
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
30 additions
and
25 deletions
+30
-25
libmysql/libmysql.c
libmysql/libmysql.c
+10
-10
libmysql/manager.c
libmysql/manager.c
+1
-1
mysys/mf_tempfile.c
mysys/mf_tempfile.c
+3
-3
mysys/my_tempnam.c
mysys/my_tempnam.c
+1
-1
sql/log.cc
sql/log.cc
+9
-6
sql/mini_client.cc
sql/mini_client.cc
+3
-2
sql/mysqld.cc
sql/mysqld.cc
+3
-2
No files found.
libmysql/libmysql.c
View file @
ddf17601
...
...
@@ -316,7 +316,7 @@ HANDLE create_named_pipe(NET *net, uint connect_timeout, char **arg_host,
char
**
arg_unix_socket
)
{
HANDLE
hPipe
=
INVALID_HANDLE_VALUE
;
char
szPipeName
[
257
];
char
szPipeName
[
1024
];
DWORD
dwMode
;
int
i
;
my_bool
testing_named_pipes
=
0
;
...
...
@@ -327,9 +327,9 @@ HANDLE create_named_pipe(NET *net, uint connect_timeout, char **arg_host,
if
(
!
host
||
!
strcmp
(
host
,
LOCAL_HOST
))
host
=
LOCAL_HOST_NAMEDPIPE
;
s
printf
(
szPipeName
,
"
\\\\
%s
\\
pipe
\\
%s"
,
host
,
unix_socket
);
DBUG_PRINT
(
"info"
,(
"Server name: '%s'. Named Pipe: %s"
,
host
,
unix_socket
));
s
trxnmov
(
szPipeName
,
sizeof
(
szPipeName
),
"
\\\\
"
,
host
,
"
\\
pipe
\\
"
,
unix_socket
,
NullS
);
DBUG_PRINT
(
"info"
,(
"Server name: '%s'. Named Pipe: %s"
,
host
,
unix_socket
));
for
(
i
=
0
;
i
<
100
;
i
++
)
/* Don't retry forever */
{
...
...
@@ -694,7 +694,7 @@ mysql_debug(const char *debug __attribute__((unused)))
#else
{
char
buff
[
80
];
str
mov
(
strmov
(
buff
,
"libmysql: "
),
env
);
str
xnmov
(
buff
,
sizeof
(
buff
),
"libmysql: "
,
env
);
MessageBox
((
HWND
)
0
,
"Debugging variable MYSQL_DEBUG used"
,
buff
,
MB_OK
);
}
#endif
...
...
libmysql/manager.c
View file @
ddf17601
...
...
@@ -133,7 +133,7 @@ MYSQL_MANAGER* STDCALL mysql_manager_connect(MYSQL_MANAGER* con,
if
(
!
hp
)
{
con
->
last_errno
=
tmp_errno
;
sprintf
(
con
->
last_error
,
"Could not resolve host '%s'"
,
host
);
sprintf
(
con
->
last_error
,
"Could not resolve host '%
-.64
s'"
,
host
);
my_gethostbyname_r_free
();
goto
err
;
}
...
...
mysys/mf_tempfile.c
View file @
ddf17601
...
...
@@ -124,11 +124,11 @@ File create_temp_file(char *to, const char *dir, const char *prefix,
#ifdef OS2
/* changing environ variable doesn't work with VACPP */
char
buffer
[
256
];
s
printf
(
buffer
,
"TMP=%s
"
,
dir
);
s
trxnmov
(
buffer
,
sizeof
(
buffer
),
"TMP=
"
,
dir
);
/* remove ending backslash */
if
(
buffer
[
strlen
(
buffer
)
-
1
]
==
'\\'
)
buffer
[
strlen
(
buffer
)
-
1
]
=
'\0'
;
putenv
(
buffer
);
putenv
(
buffer
);
#elif !defined(__NETWARE__)
old_env
=
(
char
**
)
environ
;
if
(
dir
)
...
...
mysys/my_tempnam.c
View file @
ddf17601
...
...
@@ -106,7 +106,7 @@ my_string my_tempnam(const char *dir, const char *pfx,
#ifdef OS2
/* changing environ variable doesn't work with VACPP */
char
buffer
[
256
];
s
printf
(
buffer
,
"TMP=%s
"
,
dir
);
s
trxnmov
(
buffer
,
sizeof
(
buffer
),
"TMP=
"
,
dir
);
/* remove ending backslash */
if
(
buffer
[
strlen
(
buffer
)
-
1
]
==
'\\'
)
buffer
[
strlen
(
buffer
)
-
1
]
=
'\0'
;
...
...
sql/log.cc
View file @
ddf17601
...
...
@@ -215,12 +215,15 @@ bool MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
case
LOG_NORMAL
:
{
char
*
end
;
int
len
=
my_snprintf
(
buff
,
sizeof
(
buff
),
#ifdef __NT__
sprintf
(
buff
,
"%s, Version: %s, started with:
\n
TCP Port: %d, Named Pipe: %s
\n
"
,
my_progname
,
server_version
,
mysql_port
,
mysql_unix_port
);
"%s, Version: %s, started with:
\n
TCP Port: %d, Named Pipe: %s
\n
"
,
#else
sprintf
(
buff
,
"%s, Version: %s, started with:
\n
Tcp port: %d Unix socket: %s
\n
"
,
my_progname
,
server_version
,
mysql_port
,
mysql_unix_port
);
"%s, Version: %s, started with:
\n
Tcp port: %d Unix socket: %s
\n
"
,
#endif
end
=
strmov
(
strend
(
buff
),
"Time Id Command Argument
\n
"
);
my_progname
,
server_version
,
mysql_port
,
mysql_unix_port
);
end
=
strnmov
(
buff
+
len
,
"Time Id Command Argument
\n
"
,
sizeof
(
buff
)
-
len
);
if
(
my_b_write
(
&
log_file
,
(
byte
*
)
buff
,(
uint
)
(
end
-
buff
))
||
flush_io_cache
(
&
log_file
))
goto
err
;
...
...
@@ -231,7 +234,7 @@ bool MYSQL_LOG::open(const char *log_name, enum_log_type log_type_arg,
time_t
skr
=
time
(
NULL
);
struct
tm
tm_tmp
;
localtime_r
(
&
skr
,
&
tm_tmp
);
sprintf
(
buff
,
"# %s, Version: %s at %02d%02d%02d %2d:%02d:%02d
\n
"
,
my_snprintf
(
buff
,
sizeof
(
buff
)
,
"# %s, Version: %s at %02d%02d%02d %2d:%02d:%02d
\n
"
,
my_progname
,
server_version
,
tm_tmp
.
tm_year
%
100
,
tm_tmp
.
tm_mon
+
1
,
...
...
sql/mini_client.cc
View file @
ddf17601
...
...
@@ -117,7 +117,7 @@ HANDLE create_named_pipe(NET *net, uint connect_timeout, char **arg_host,
char
**
arg_unix_socket
)
{
HANDLE
hPipe
=
INVALID_HANDLE_VALUE
;
char
szPipeName
[
257
];
char
szPipeName
[
512
];
DWORD
dwMode
;
int
i
;
my_bool
testing_named_pipes
=
0
;
...
...
@@ -126,7 +126,8 @@ HANDLE create_named_pipe(NET *net, uint connect_timeout, char **arg_host,
if
(
!
host
||
!
strcmp
(
host
,
LOCAL_HOST
))
host
=
LOCAL_HOST_NAMEDPIPE
;
sprintf
(
szPipeName
,
"
\\\\
%s
\\
pipe
\\
%s"
,
host
,
unix_socket
);
strxnmov
(
szPipeName
,
sizeof
(
szPipeName
),
"
\\\\
"
,
host
,
"
\\
pipe
\\
"
,
unix_socket
,
NullS
);
DBUG_PRINT
(
"info"
,(
"Server name: '%s'. Named Pipe: %s"
,
host
,
unix_socket
));
...
...
sql/mysqld.cc
View file @
ddf17601
...
...
@@ -189,7 +189,7 @@ static const char* default_dbug_option=IF_WIN("d:t:i:O,\\mysqld.trace",
#endif
#ifdef __NT__
static
char
szPipeName
[
257
];
static
char
szPipeName
[
512
];
static
SECURITY_ATTRIBUTES
saPipeSecurity
;
static
SECURITY_DESCRIPTOR
sdPipeDescriptor
;
static
HANDLE
hPipe
=
INVALID_HANDLE_VALUE
;
...
...
@@ -1173,7 +1173,8 @@ static void server_init(void)
if
(
Service
.
IsNT
()
&&
mysql_unix_port
[
0
]
&&
!
opt_bootstrap
&&
opt_enable_named_pipe
)
{
sprintf
(
szPipeName
,
"
\\\\
.
\\
pipe
\\
%s"
,
mysql_unix_port
);
strxnmov
(
szPipeName
,
sizeof
(
szPipeName
),
"
\\\\
.
\\
pipe
\\
"
,
unix_socket
,
NullS
);
ZeroMemory
(
&
saPipeSecurity
,
sizeof
(
saPipeSecurity
)
);
ZeroMemory
(
&
sdPipeDescriptor
,
sizeof
(
sdPipeDescriptor
)
);
if
(
!
InitializeSecurityDescriptor
(
&
sdPipeDescriptor
,
...
...
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