2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-29 05:17:54 +00:00

Cast 2nd argument of lseek() to off_t if it is a constant for systems

with 64-bit off_t but without a proper lseek() prototype.
This commit is contained in:
Todd C. Miller 2012-08-07 14:42:08 -04:00
parent 7d255e42cb
commit 3ba8da4ab6

View File

@ -225,7 +225,7 @@ io_nextid(char *iolog_dir, char *iolog_dir_fallback, char sessid[7])
sessid[6] = '\0';
/* Rewind and overwrite old seq file. */
if (lseek(fd, 0, SEEK_SET) == (off_t)-1 || write(fd, buf, 7) != 7)
if (lseek(fd, (off_t)0, SEEK_SET) == (off_t)-1 || write(fd, buf, 7) != 7)
log_fatal(USE_ERRNO, _("unable to write to %s"), pathbuf);
close(fd);