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
aa08fd0d
Commit
aa08fd0d
authored
Sep 30, 2005
by
jani@a193-229-222-105.elisa-laajakaista.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fixes.
parent
8d3036c3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/my_sys.h
include/my_sys.h
+1
-1
server-tools/instance-manager/protocol.cc
server-tools/instance-manager/protocol.cc
+2
-2
No files found.
include/my_sys.h
View file @
aa08fd0d
...
...
@@ -280,7 +280,7 @@ enum loglevel {
enum
cache_type
{
TYPE_NOT_SET
,
READ_CACHE
,
WRITE_CACHE
,
TYPE_NOT_SET
=
0
,
READ_CACHE
,
WRITE_CACHE
,
SEQ_READ_APPEND
/* sequential read or append */
,
READ_FIFO
,
READ_NET
,
WRITE_NET
};
...
...
server-tools/instance-manager/protocol.cc
View file @
aa08fd0d
...
...
@@ -74,7 +74,7 @@ int net_send_error(struct st_net *net, uint sql_errno)
MYSQL_ERRMSG_SIZE
];
// message
char
*
pos
=
buff
;
int
ERROR_PACKET_CODE
=
255
;
const
int
ERROR_PACKET_CODE
=
255
;
*
pos
++=
ERROR_PACKET_CODE
;
int2store
(
pos
,
sql_errno
);
pos
+=
2
;
...
...
@@ -95,7 +95,7 @@ int net_send_error_323(struct st_net *net, uint sql_errno)
MYSQL_ERRMSG_SIZE
];
// message
char
*
pos
=
buff
;
int
ERROR_PACKET_CODE
=
255
;
const
int
ERROR_PACKET_CODE
=
255
;
*
pos
++=
ERROR_PACKET_CODE
;
int2store
(
pos
,
sql_errno
);
pos
+=
2
;
...
...
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