getrandom: fix comment [BZ #22347]

* stdlib/getrandom.c (getrandom): Fix comment.
* sysdeps/unix/sysv/linux/getrandom.c (getrandom): Likewise.
This commit is contained in:
Dmitry V. Levin 2017-12-23 14:27:30 +00:00
parent f5c558f3ec
commit a47ad79afa
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2017-12-23 Dmitry V. Levin <ldv@altlinux.org>
[BZ #22347]
* stdlib/getrandom.c (getrandom): Fix comment.
* sysdeps/unix/sysv/linux/getrandom.c (getrandom): Likewise.
2017-12-23 Aurelien Jarno <aurelien@aurel32.net>
[BZ #21161]

View File

@ -19,8 +19,8 @@
#include <sys/random.h>
#include <errno.h>
/* Write LENGTH bytes of randomness starting at BUFFER. Return the
number of bytes written, or -1 on error. */
/* Write up to LENGTH bytes of randomness starting at BUFFER.
Return the number of bytes written, or -1 on error. */
ssize_t
getrandom (void *buffer, size_t length, unsigned int flags)
{

View File

@ -22,8 +22,8 @@
#include <sysdep-cancel.h>
#ifdef __NR_getrandom
/* Write LENGTH bytes of randomness starting at BUFFER. Return 0 on
success and -1 on failure. */
/* Write up to LENGTH bytes of randomness starting at BUFFER.
Return the number of bytes written, or -1 on error. */
ssize_t
getrandom (void *buffer, size_t length, unsigned int flags)
{