diff options
author | unknown <tonu@volk.internalnet> | 2001-09-22 22:40:54 +0800 |
---|---|---|
committer | unknown <tonu@volk.internalnet> | 2001-09-22 22:40:54 +0800 |
commit | f60d2fed0611670c625415b65b48b4c63f00145f (patch) | |
tree | f7290c52408f504ff3556c2471377d14b67a5fb8 /sql | |
parent | a6397f17f7d28a45f38956971a0cbfa9fbc5a371 (diff) | |
download | mariadb-git-f60d2fed0611670c625415b65b48b4c63f00145f.tar.gz |
Typo fixes on SSL
sql/lex.h:
Typo fix
sql/sql_yacc.yy:
Typo fix
Diffstat (limited to 'sql')
-rw-r--r-- | sql/lex.h | 2 | ||||
-rw-r--r-- | sql/sql_yacc.yy | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sql/lex.h b/sql/lex.h index b72b42f2a3d..ca797e5b894 100644 --- a/sql/lex.h +++ b/sql/lex.h @@ -83,7 +83,7 @@ static SYMBOL symbols[] = { { "CHANGED", SYM(CHANGED),0,0}, { "CHECK", SYM(CHECK_SYM),0,0}, { "CHECKSUM", SYM(CHECKSUM_SYM),0,0}, - { "CHIPHER", SYM(CHIPHER_SYM),0,0}, + { "CIPHER", SYM(CIPHER_SYM),0,0}, { "CLOSE", SYM(CLOSE_SYM),0,0}, { "COLUMN", SYM(COLUMN_SYM),0,0}, { "COLUMNS", SYM(COLUMNS),0,0}, diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index c1933552f6b..6d80234082d 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -3309,7 +3309,7 @@ require_list_element: SUBJECT_SYM TEXT_STRING { Lex->ssl_issuer=$2.str; } - | CHIPHER_SYM TEXT_STRING + | CIPHER_SYM TEXT_STRING { Lex->ssl_chipher=$2.str; } |