SSID and PASSWD were printed correctly when they were under 13 characters, but they were not printed correctly when they exceeded 14 characters. Therefore, I fixed this problem with this commit.
Both SSID and PASSWD are 13 characters (1234567890abc).
SSID is 13 characters (1234567890abc), and PASSWD is 14 characters (1234567890abcd).
Both SSID and PASSWD are 14 characters (1234567890abcd).
After the fix:
Both SSID and PASSWD were printed correctly even they are 14 characters (1234567890abcd).
SSID and PASSWD were printed correctly when they were under 13 characters, but they were not printed correctly when they exceeded 14 characters. Therefore, I fixed this problem with this commit.
Both
SSID
andPASSWD
are 13 characters (1234567890abc
).SSID
is 13 characters (1234567890abc
), andPASSWD
is 14 characters (1234567890abcd
).Both
SSID
andPASSWD
are 14 characters (1234567890abcd
).After the fix: Both
SSID
andPASSWD
were printed correctly even they are 14 characters (1234567890abcd
).