]> git.sur5r.net Git - openldap/commitdiff
Minor cleanup.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 26 Oct 1999 23:04:44 +0000 (23:04 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 26 Oct 1999 23:04:44 +0000 (23:04 +0000)
libraries/liblutil/entropy.c

index 027d31c39195ed61049670a55776ad3ff051f31b..dc33f7cfc4344ae30fd7e24623e40c3ff124e18c 100644 (file)
@@ -11,7 +11,7 @@
 #include <lutil.h>
 
 /*
- * lutil_entropy() provides nbyptes of entropy in buf.
+ * lutil_entropy() provides nbytes of entropy in buf.
  * Quality offerred is suitable for one-time uses, such as "once" keys.
  */
 int lutil_entropy( char *buf, int nbytes )
@@ -31,6 +31,7 @@ int lutil_entropy( char *buf, int nbytes )
                rc = read( fd, buf, nbytes );
                close(fd);
 
+               /* should return nbytes */
                if( rc < nbytes ) return -1;
 
                return 0;