diff options
author | 1996-01-17 10:00:23 +0000 | |
---|---|---|
committer | 1996-01-17 10:00:23 +0000 | |
commit | b6e9b25ba8590f942fe4b485de57093c2c242211 (patch) | |
tree | f875c42f00f3e156f47852a41f7760a8b8513eef /sysdeps/unix/seekdir.c | |
parent | Sun Jan 14 17:51:09 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> (diff) | |
download | glibc-cvs/libc-960117.tar.xz glibc-cvs/libc-960117.zip |
* sysdeps/unix/seekdir.c: Don't modify POS before seeking.cvs/libc-960117
* sysdeps/unix/telldir.c: Fix position calculation to account for
buffered data properly.
Diffstat (limited to 'sysdeps/unix/seekdir.c')
-rw-r--r-- | sysdeps/unix/seekdir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/seekdir.c b/sysdeps/unix/seekdir.c index b0a6f5e9d7..018f697c21 100644 --- a/sysdeps/unix/seekdir.c +++ b/sysdeps/unix/seekdir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -27,7 +27,6 @@ Cambridge, MA 02139, USA. */ void DEFUN(seekdir, (dirp, pos), DIR *dirp AND __off_t pos) { - pos -= dirp->__size - dirp->__offset; (void) __lseek(dirp->__fd, pos, SEEK_SET); dirp->__size = 0; dirp->__offset = 0; |