diff options
author | Tom Lane | 2003-03-10 22:28:22 +0000 |
---|---|---|
committer | Tom Lane | 2003-03-10 22:28:22 +0000 |
commit | e4704001ea4c3d63b53e8783859ff598ef2f69e5 (patch) | |
tree | 56d282d342ead04fc43af4efc5a2eccffa3e27ed /contrib/pgcrypto/random.c | |
parent | 081fa240a119b67e28227439a3bf700340442787 (diff) |
This patch fixes a bunch of spelling mistakes in comments throughout the
PostgreSQL source code.
Neil Conway
Diffstat (limited to 'contrib/pgcrypto/random.c')
-rw-r--r-- | contrib/pgcrypto/random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/random.c b/contrib/pgcrypto/random.c index ce5f838a0c8..7984aee915d 100644 --- a/contrib/pgcrypto/random.c +++ b/contrib/pgcrypto/random.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: random.c,v 1.5 2001/11/05 17:46:23 momjian Exp $ + * $Id: random.c,v 1.6 2003/03/10 22:28:17 tgl Exp $ */ @@ -115,7 +115,7 @@ px_get_random_bytes(uint8 *dst, unsigned count) /* * OpenSSL random should re-feeded occasionally. From /dev/urandom - * preferrably. + * preferably. */ res = RAND_bytes(dst, count); |