1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-01-20 20:37:27 +01:00

add missing semicolon

This commit is contained in:
Brent Cook 2018-01-26 17:26:45 -06:00
parent b87e445677
commit 96fb621adc
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96

View File

@ -372,7 +372,7 @@ function stdapi_fs_delete($req, &$pkt) {
if (is_windows()) {
exec("attrib.exe -r ".$path);
}
$ret = @unlink($path)
$ret = @unlink($path);
return $ret ? ERROR_SUCCESS : ERROR_FAILURE;
}
}