diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-20 20:55:53 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-20 20:55:53 +0000 |
commit | a4faf24354ee98ef226a9012f2835cd771380882 (patch) | |
tree | 4f40dfbd7bb3a5efbc2f91d6ceebfa5602971cc6 | |
parent | 680dd6f228441bf625ca6a384c22f9dfb90133e1 (diff) | |
download | glibc-a4faf24354ee98ef226a9012f2835cd771380882.zip glibc-a4faf24354ee98ef226a9012f2835cd771380882.tar.gz glibc-a4faf24354ee98ef226a9012f2835cd771380882.tar.bz2 |
Update.
* sysdeps/unix/sysv/linux/not-cancel.h (open_not_cancel): Cast
first syscall parameter to cnst char*.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/generic/check_fds.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/not-cancel.h | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ 2003-04-20 Ulrich Drepper <drepper@redhat.com> - * sysdeps/generic/check_fds.c (check_one_fd): Cast first parameter - of open_not_cancel explicitly to const char*. + * sysdeps/unix/sysv/linux/not-cancel.h (open_not_cancel): Cast + first syscall parameter to cnst char*. 2003-04-19 Ulrich Drepper <drepper@redhat.com> diff --git a/sysdeps/generic/check_fds.c b/sysdeps/generic/check_fds.c index 62df3e5..8a3efd1 100644 --- a/sysdeps/generic/check_fds.c +++ b/sysdeps/generic/check_fds.c @@ -49,7 +49,7 @@ check_one_fd (int fd, int mode) /* Something is wrong with this descriptor, it's probably not opened. Open /dev/null so that the SUID program we are about to start does not accidently use this descriptor. */ - int nullfd = open_not_cancel ((const char *) _PATH_DEVNULL, mode); + int nullfd = open_not_cancel (_PATH_DEVNULL, mode); /* We are very paranoid here. With all means we try to ensure that we are actually opening the /dev/null device and nothing else. diff --git a/sysdeps/unix/sysv/linux/not-cancel.h b/sysdeps/unix/sysv/linux/not-cancel.h index e2cb3b2..cf61cff 100644 --- a/sysdeps/unix/sysv/linux/not-cancel.h +++ b/sysdeps/unix/sysv/linux/not-cancel.h @@ -24,7 +24,7 @@ #ifdef INLINE_SYSCALL # define open_not_cancel(name, flags, mode...) \ ({ int _mode = (0, ##mode); \ - INLINE_SYSCALL (open, 3, name, flags, _mode); }) + INLINE_SYSCALL (open, 3, (const char *) name, flags, _mode); }) #endif /* Uncancelable close. */ |