mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 22:20:35 -04:00
11 lines
245 B
Text
11 lines
245 B
Text
--- llong.c~ Wed Mar 17 23:43:14 1999
|
|
+++ llong.c Mon Oct 9 18:21:24 2000
|
|
@@ -51,7 +51,7 @@
|
|
else
|
|
return -1;
|
|
#else
|
|
- return lseek(fd, (off_t) where, whence);
|
|
+ return lseek(fd, (off_t) where, whence) == (off_t) -1 ? -1 : 0;
|
|
#endif
|
|
}
|
|
|