1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-02-28 06:13:03 +01:00

Fix strncpy check

This commit is contained in:
jvazquez-r7 2015-01-02 09:42:44 -06:00
parent 2d553497d5
commit 86fc7889ed

View File

@ -299,7 +299,7 @@ int pass_fd(void *libc) {
}
strncpy = dlsym(libc, "strncpy");
if (!recvmsg) {
if (!strncpy) {
TRACE("[ Failed to solve strncpy ]\n");
return -1;
}