summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2018-05-16 02:18:50 -0400
committerJay Satiro <raysatiro@yahoo.com>2018-05-16 02:21:06 -0400
commit4f9bbd3ac78191134bdd02df1b95959eb43efeba (patch)
treeac81a9809bf135f533d5000e707d4a8bc152ce56
parent4584cc44996c2db82542f0e702aee4a6ce5dcb18 (diff)
downloadcurl-4f9bbd3ac78191134bdd02df1b95959eb43efeba.tar.gz
rand: fix typo
-rw-r--r--lib/rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rand.c b/lib/rand.c
index 0769ed151..1dc2504ac 100644
--- a/lib/rand.c
+++ b/lib/rand.c
@@ -158,7 +158,7 @@ CURLcode Curl_rand_hex(struct Curl_easy *data, unsigned char *rnd,
DEBUGASSERT(num > 1);
#ifdef __clang_analyzer__
- /* This silences a scan-build warning about accesssing this buffer with
+ /* This silences a scan-build warning about accessing this buffer with
uninitialized memory. */
memset(buffer, 0, sizeof(buffer));
#endif