mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-08-13 04:42:23 +03:00
tests: Use fstat instead of lstat
CID 1393878 Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
@@ -98,7 +98,7 @@ static void torture_sftp_fsync(void **state) {
|
|||||||
fp = fopen(libssh_tmp_file, "r");
|
fp = fopen(libssh_tmp_file, "r");
|
||||||
assert_non_null(fp);
|
assert_non_null(fp);
|
||||||
|
|
||||||
rc = lstat(libssh_tmp_file, &sb);
|
rc = fstat(fileno(fp), &sb);
|
||||||
assert_return_code(rc, errno);
|
assert_return_code(rc, errno);
|
||||||
|
|
||||||
bytesread = fread(buf_verify, sizeof(buf_verify), 1, fp);
|
bytesread = fread(buf_verify, sizeof(buf_verify), 1, fp);
|
||||||
|
Reference in New Issue
Block a user