aboutsummaryrefslogtreecommitdiff
path: root/src/or/eventdns.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-06-04 06:16:20 +0000
committerRoger Dingledine <arma@torproject.org>2006-06-04 06:16:20 +0000
commit603b09b59b9c08c118c86a1b8fc5dd1265cb6dfc (patch)
treed07186f74ebc7c3fdf2eb38f3b2491ceca6e3ba8 /src/or/eventdns.c
parentc18fab536631ab4370c987b1391902bde4de75ae (diff)
downloadtor-603b09b59b9c08c118c86a1b8fc5dd1265cb6dfc.tar
tor-603b09b59b9c08c118c86a1b8fc5dd1265cb6dfc.tar.gz
punctuation and spelling
svn:r6529
Diffstat (limited to 'src/or/eventdns.c')
-rw-r--r--src/or/eventdns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/eventdns.c b/src/or/eventdns.c
index 6c031bd84..8bb96a4ea 100644
--- a/src/or/eventdns.c
+++ b/src/or/eventdns.c
@@ -34,7 +34,7 @@
*
* This library is designed to be included and shipped with your source
* code. You statically link with it. You should also test for the
- * existance of strtok_r and define HAVE_STRTOK_R if you have it.
+ * existence of strtok_r and define HAVE_STRTOK_R if you have it.
*
* The DNS protocol requires a good source of id numbers and these
* numbers should be unpredictable for spoofing reasons. There are
@@ -43,12 +43,12 @@
*
* DNS_USE_GETTIMEOFDAY_FOR_ID:
* Using the bottom 16 bits of the usec result from gettimeofday. This
- * is a pretty poor solution but should work anywhere
+ * is a pretty poor solution but should work anywhere.
* DNS_USE_CPU_CLOCK_FOR_ID:
* Using the bottom 16 bits of the nsec result from the CPU's time
* counter. This is better, but may not work everywhere. Requires
* POSIX realtime support and you'll need to link against -lrt on
- * glibc systems at least
+ * glibc systems at least.
* DNS_USE_OPENSSL_FOR_ID:
* Uses the OpenSSL RAND_bytes call to generate the data. You must
* have seeded the pool before making any calls to this library.