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
14b4b58d
Commit
14b4b58d
authored
Feb 10, 2003
by
serg@sergbook.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge sergbook.mysql.com:/usr/home/serg/Abk/mysql
into sergbook.mysql.com:/usr/home/serg/Abk/mysql-4.0
parents
cba78f82
3cc3ec17
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
17 deletions
+21
-17
Build-tools/Do-compile
Build-tools/Do-compile
+8
-4
bdb/dist/configure.in
bdb/dist/configure.in
+0
-7
scripts/mysqlaccess.sh
scripts/mysqlaccess.sh
+2
-2
scripts/mysqlhotcopy.sh
scripts/mysqlhotcopy.sh
+8
-3
sql/sql_acl.cc
sql/sql_acl.cc
+3
-1
No files found.
Build-tools/Do-compile
View file @
14b4b58d
...
...
@@ -75,13 +75,17 @@ if (@config_env > 0)
}
chomp
(
$host
=
`
hostname
`);
chomp
(
$uname
=
`
uname
`);
$full_host_name
=
$host
;
$connect_option
=
(
$opt_tcpip
?
"
--host=
$host
"
:
"");
$host
=~
/^([^.-]*)/
;
$host
=
$1
.
$opt_suffix
;
$email
=
"
$opt_user
\
@mysql
.com
";
$pwd
=
`
pwd
`;
chomp
(
$pwd
);
$log
=
"
$pwd
/Logs/
$host$opt_version_suffix
.log
";
chomp
(
$pwd
=
`
pwd
`);
$VER
=
`
basename
$opt_distribution
`;
chop
$VER
;
$VER
=~
/mysql.*-([1-9]\.[0-9]{1,2}\.[0-9]{1,2}.*)\.tar*/
;
$version
=
$1
;
(
$major
,
$minor
,
$release
)
=
split
(
/\./
,
$version
);
$log
=
"
$pwd
/Logs/
$host
-
$major
.
$minor$opt_version_suffix
.log
";
$opt_distribution
=~
/(mysql[^\/]*)\.tar/
;
$ver
=
$1
;
$gcc_version
=
which
("
gcc
");
...
...
@@ -559,9 +563,9 @@ sub abort
{
$mail_header_file
=
"
$opt_tmp
/do-command.$$
";
open
(
TMP
,"
>
$mail_header_file
");
print
TMP
"
From: mysql
\
@
$full_host_name
\n
";
print
TMP
"
From: mysql
dev
\
@
$full_host_name
\n
";
print
TMP
"
To:
$email
\n
";
print
TMP
"
Subject:
$ver$opt_version_suffix
compilation failed
\n\n
";
print
TMP
"
Subject:
$
host
(
$uname
):
$
ver$opt_version_suffix
compilation failed
\n\n
";
close
TMP
;
system
("
tail -n 40
$log
>
$log
.mail
");
system
("
cat
$mail_header_file
$log
.mail |
$sendmail
-t -f
$email
");
...
...
bdb/dist/configure.in
View file @
14b4b58d
...
...
@@ -463,13 +463,6 @@ dnl deleted getwd().
AC_REPLACE_FUNCS(getcwd getopt memcmp memcpy memmove)
AC_REPLACE_FUNCS(raise snprintf strcasecmp strerror vsnprintf)
dnl XXX
dnl Nasty hack. AC_REPLACE_FUNCS added entries of the form xxx.o to the
dnl LIBOBJS variable. They have to be xxx.lo if we are building shared
dnl libraries. Use sed, configure already requires it.
tmp="`echo \"$LIBOBJS\" | sed \"s/\.o/${o}/g\"`"
LIBOBJS="$tmp"
dnl Check for system functions we optionally use.
AC_CHECK_FUNCS(getuid pstat_getdynamic sysconf sched_yield strtoul yield)
...
...
scripts/mysqlaccess.sh
View file @
14b4b58d
...
...
@@ -2414,7 +2414,7 @@ sub Print_Header {
sub Print_Footer {
if ($MySQLaccess::CMD) { #command-line mode
print "\n"
."BUGs can be reported by email to
Yves.Carlier\@rug.ac.be
\n";
."BUGs can be reported by email to
bugs\@mysql.com
\n";
}
if ($MySQLaccess::CGI) { #CGI-BIN mode
if ($MySQLaccess::Param{'
brief
'}) {
...
...
@@ -2422,7 +2422,7 @@ sub Print_Footer {
}
print "<HR>\n"
."<ADDRESS>\n"
."BUGs can be reported by email to <a href=mailto:
Yves.Carlier\@rug.ac.be>Yves.Carlier\@rug.ac.be
</a><BR>\n"
."BUGs can be reported by email to <a href=mailto:
bugs\@mysql.com>bugs\@mysql.com
</a><BR>\n"
# ."Don'
t forget to mention the version
$VERSION
!
<BR>
\n
"
."
</ADDRESS>
\n
"
."
</BODY>
\n
"
...
...
scripts/mysqlhotcopy.sh
View file @
14b4b58d
...
...
@@ -49,8 +49,9 @@ Usage: $0 db_name[./table_regex/] [new_db_name | directory]
-?, --help display this helpscreen and exit
-u, --user=# user for database login if not current user
-p, --password=# password to use when connecting to server
-h, --host=# Hostname for local server when connecting over TCP/IP
-p, --password=# password to use when connecting to server (if not set
in my.cnf, which is recommended)
-h, --host=# Hostname for local server when connecting over TCP/IP
-P, --port=# port to use when connecting to local server with TCP/IP
-S, --socket=# socket to use when connecting to local server
...
...
@@ -893,7 +894,11 @@ user for database login if not current user
=
item
-p
,
--password
=
#
password to use when connecting to server
password to use when connecting to the server. Note that you are strongly
encouraged
*
not
*
to use this option as every user would be able to see the
password
in
the process list. Instead use the
'[mysqlhotcopy]'
section
in
one of the config files, normally /etc/my.cnf or your personal ~/.my.cnf.
(
See the chapter
'my.cnf Option Files'
in
the manual
)
=
item
-h
,
-h
,
--host
=
#
...
...
sql/sql_acl.cc
View file @
14b4b58d
...
...
@@ -1267,7 +1267,9 @@ static int replace_user_table(THD *thd, TABLE *table, const LEX_USER &combo,
{
if
(
combo
.
password
.
length
!=
HASH_PASSWORD_LENGTH
)
{
my_error
(
ER_PASSWORD_NO_MATCH
,
MYF
(
0
));
my_printf_error
(
ER_PASSWORD_NO_MATCH
,
"Password hash should be a %d-digit hexadecimal number"
,
MYF
(
0
),
HASH_PASSWORD_LENGTH
);
DBUG_RETURN
(
-
1
);
}
password
=
combo
.
password
.
str
;
...
...
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