mirror of git://sourceware.org/git/glibc.git
* sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Treat a struct flock with
l_start == 0 and l_len == 1 as we do l_len == 0.
This commit is contained in:
parent
da43dd4f99
commit
8bbd8b0ba2
|
|
@ -1,3 +1,8 @@
|
||||||
|
2002-11-10 Roland McGrath <roland@frob.com>
|
||||||
|
|
||||||
|
* sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Treat a struct flock with
|
||||||
|
l_start == 0 and l_len == 1 as we do l_len == 0.
|
||||||
|
|
||||||
2002-11-10 Ulrich Drepper <drepper@redhat.com>
|
2002-11-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* po/da.po: Update from translation team.
|
* po/da.po: Update from translation team.
|
||||||
|
|
|
||||||
|
|
@ -155,7 +155,12 @@ __libc_fcntl (int fd, int cmd, ...)
|
||||||
switch (fl->l_whence)
|
switch (fl->l_whence)
|
||||||
{
|
{
|
||||||
case SEEK_SET:
|
case SEEK_SET:
|
||||||
if (fl->l_start == 0 && fl->l_len == 0)
|
if (fl->l_start == 0 && fl->l_len == 0) /* Whole file request. */
|
||||||
|
break;
|
||||||
|
/* It seems to be common for applications to lock the first
|
||||||
|
byte of the file when they are really doing whole-file locking.
|
||||||
|
So, since it's so wrong already, might as well do that too. */
|
||||||
|
if (fl->l_start == 0 && fl->l_len == 1)
|
||||||
break;
|
break;
|
||||||
/* FALLTHROUGH */
|
/* FALLTHROUGH */
|
||||||
case SEEK_CUR:
|
case SEEK_CUR:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue