* newlib/libc/search/hash.c: Revert patch from 2012-08-08.
This commit is contained in:
parent
7eb805f68d
commit
ffd672bec7
|
@ -1,3 +1,7 @@
|
|||
2013-04-19 Corinna Vinschen <vinschen@redhat.com>
|
||||
|
||||
* newlib/libc/search/hash.c: Revert patch from 2012-08-08.
|
||||
|
||||
2013-04-16 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* libc/sys/rtems/sys/queue.h: Delete file.
|
||||
|
|
|
@ -143,7 +143,7 @@ _DEFUN(__hash_open, (file, flags, mode, info, dflags),
|
|||
#ifdef __USE_INTERNAL_STAT64
|
||||
(_stat64(file, &statbuf) && (errno == ENOENT))) {
|
||||
#else
|
||||
(_stat(file, &statbuf) && (errno == ENOENT))) {
|
||||
(stat(file, &statbuf) && (errno == ENOENT))) {
|
||||
#endif
|
||||
if (errno == ENOENT)
|
||||
errno = 0; /* Just in case someone looks at errno */
|
||||
|
@ -159,7 +159,7 @@ _DEFUN(__hash_open, (file, flags, mode, info, dflags),
|
|||
#ifdef __USE_INTERNAL_STAT64
|
||||
_fstat64(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0)
|
||||
#else
|
||||
_fstat(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0)
|
||||
fstat(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0)
|
||||
#endif
|
||||
new_table = 1;
|
||||
|
||||
|
@ -341,7 +341,7 @@ init_hash(hashp, file, info)
|
|||
#ifdef __USE_INTERNAL_STAT64
|
||||
if (_stat64(file, &statbuf))
|
||||
#else
|
||||
if (_stat(file, &statbuf))
|
||||
if (stat(file, &statbuf))
|
||||
#endif
|
||||
return (NULL);
|
||||
hashp->BSIZE = statbuf.st_blksize;
|
||||
|
|
Loading…
Reference in New Issue