Quellcode durchsuchen

Update git ignore file

Josh Brickner vor 7 Jahren
Ursprung
Commit
a2dfd06944
2 geänderte Dateien mit 2 neuen und 3 gelöschten Zeilen
  1. 1 1
      .gitignore
  2. 1 2
      binlog/authentication.go

+ 1 - 1
.gitignore

@@ -1,4 +1,4 @@
 tags
 .idea
 .DS_Store
-mysql_binlog_filter
+mysql-binlog-filter

+ 1 - 2
binlog/authentication.go

@@ -7,7 +7,7 @@ import (
 
 func (c *Conn) authenticate(hr *HandshakeResponse) {
 	switch c.Handshake.AuthPluginName {
-	case "mysql_native_password" :
+	case "mysql_native_password":
 		c.doSha1Auth(hr)
 	case "caching_sha2_password":
 		c.doSha2Auth(hr)
@@ -65,4 +65,3 @@ func (c *Conn) sha256Hash(word []byte) []byte {
 	s.Write(word)
 	return s.Sum(nil)
 }
-