We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30bfc38 commit ee155a3Copy full SHA for ee155a3
packets.go
@@ -338,7 +338,7 @@ func (mc *mysqlConn) readResultOK() (e error) {
338
return mc.handleOkPacket(data)
339
// EOF, someone is using old_passwords
340
case 254:
341
- e = errors.New("It seems like you are using old_passwords, which is unsupported. See http://code.google.com/p/go-mysql-driver/wiki/old_passwords")
+ e = errors.New("It seems like you are using old_passwords, which is unsupported. See https://github.com/Go-SQL-Driver/MySQL/wiki/old_passwords")
342
return
343
// ERROR
344
case 255:
0 commit comments