[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r1912: Fix a typo in a comment. (in trunk: . src/util)



Author: edmanm
Date: 2007-09-05 23:51:22 -0400 (Wed, 05 Sep 2007)
New Revision: 1912

Modified:
   trunk/
   trunk/src/util/crypto.cpp
   trunk/src/util/crypto.h
Log:
 r2129@adrastea:  edmanm | 2007-09-05 03:05:06 -0400
 Fix a typo in a comment.



Property changes on: trunk
___________________________________________________________________
 svk:merge ticket from /vidalia/local/trunk [r2129] on 54b3572a-7227-0410-958f-53ecd705b71a

Modified: trunk/src/util/crypto.cpp
===================================================================
--- trunk/src/util/crypto.cpp	2007-09-06 03:51:14 UTC (rev 1911)
+++ trunk/src/util/crypto.cpp	2007-09-06 03:51:22 UTC (rev 1912)
@@ -153,7 +153,7 @@
 }
 
 /** Generates a pseudorandom string of length <b>len</b> containing printable
- * ASCII characters of length from the range '!' (0x21) to '~' (0x7e). */
+ * ASCII characters from the range '!' (0x21) to '~' (0x7e). */
 QString
 crypto_rand_string(int len)
 {

Modified: trunk/src/util/crypto.h
===================================================================
--- trunk/src/util/crypto.h	2007-09-06 03:51:14 UTC (rev 1911)
+++ trunk/src/util/crypto.h	2007-09-06 03:51:22 UTC (rev 1912)
@@ -76,7 +76,7 @@
  * crypto.c. See LICENSE for details on Tor's license. */
 quint32 crypto_rand_quint32(quint32 max);
 /** Generates a pseudorandom string of length <b>len</b> containing printable
- * ASCII characters of length from the range '!' (0x21) to '~' (0x7e). */
+ * ASCII characters from the range '!' (0x21) to '~' (0x7e). */
 QString crypto_rand_string(int len);
 
 #endif