]> sourceware.org Git - glibc.git/commitdiff
Fix comments in random_r.c.
authorUlrich Drepper <drepper@redhat.com>
Wed, 25 Nov 2009 04:22:44 +0000 (20:22 -0800)
committerUlrich Drepper <drepper@redhat.com>
Wed, 25 Nov 2009 04:22:44 +0000 (20:22 -0800)
ChangeLog
stdlib/random_r.c

index 4f74b500f0e6ed234edd8b45153ef56500d3c20a..000a535f1dde7cf2fff8628bab8772cd4d1c16e0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2009-11-24  Ulrich Drepper  <drepper@redhat.com>
 
+       [BZ #3662]
+       * stdlib/random_r.c: Fix comments for __initstate_r and __setstate_r.
+       Patch by Christopher Neufeld <glibcbugs0000@cneufeld.ca>.
+
        * sysdeps/unix/grantpt.c (pts_name): Take additional parameter,
        pass it on to __ptsname_internal.
        (grantpt): Pass stat64 pointer to pts_name.  Remove stat call here.
index 90a157f9c16c77311a809f40445760f546ccdf69..51a2e8c812aee78783bd6d38c1b6269d41c8e47e 100644 (file)
@@ -228,7 +228,7 @@ weak_alias (__srandom_r, srandom_r)
    lose this information and will be able to restart with setstate.
    Note: The first thing we do is save the current state, if any, just like
    setstate so that it doesn't matter when initstate is called.
-   Returns a pointer to the old state.  */
+   Returns 0 on success, non-zero on failure.  */
 int
 __initstate_r (seed, arg_state, n, buf)
      unsigned int seed;
@@ -296,7 +296,7 @@ weak_alias (__initstate_r, initstate_r)
    location into the zeroth word of the state information. Note that due
    to the order in which things are done, it is OK to call setstate with the
    same state as the current state
-   Returns a pointer to the old state information.  */
+   Returns 0 on success, non-zero on failure.  */
 int
 __setstate_r (arg_state, buf)
      char *arg_state;
This page took 0.054305 seconds and 5 git commands to generate.