File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class ClientHandshake extends Command {
6767 this . password3 = connection . config . password3 ;
6868 this . passwordSha1 = connection . config . passwordSha1 ;
6969 this . database = connection . config . database ;
70- this . autPluginName = this . handshake . autPluginName ;
70+ this . authPluginName = this . handshake . authPluginName ;
7171 const handshakeResponse = new Packets . HandshakeResponse ( {
7272 flags : this . clientFlags ,
7373 user : this . user ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class Handshake {
1515 this . authPluginData2 = args . authPluginData2 ;
1616 this . characterSet = args . characterSet ;
1717 this . statusFlags = args . statusFlags ;
18- this . autPluginName = args . autPluginName ;
18+ this . authPluginName = args . authPluginName ;
1919 }
2020
2121 setScrambleData ( cb ) {
@@ -102,7 +102,7 @@ class Handshake {
102102 }
103103
104104 if ( args . capabilityFlags & ClientConstants . PLUGIN_AUTH ) {
105- args . autPluginName = packet . readNullTerminatedString ( 'ascii' ) ;
105+ args . authPluginName = packet . readNullTerminatedString ( 'ascii' ) ;
106106 }
107107
108108 return new Handshake ( args ) ;
You can’t perform that action at this time.
0 commit comments