]> granicus.if.org Git - curl/commitdiff
rand: fix typo
authorJay Satiro <raysatiro@yahoo.com>
Wed, 16 May 2018 06:18:50 +0000 (02:18 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Wed, 16 May 2018 06:21:06 +0000 (02:21 -0400)
lib/rand.c

index 0769ed15128074e46c353c62cb4f7a70ab14d036..1dc2504acccfb787bd4b68d95c0826f4312cc3fe 100644 (file)
@@ -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