Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GCC 8.2.1 warns that: ‘strncpy’ specified bound depends on the length of the source argument. The length of username and password is checked beforehand anyways, so "strncpy(dst, src, strlen(src))" should be the same as "strcpy(dst, src)".
- Loading branch information