]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tool_main: fix typo in comment
authorDaniel Gustafsson <daniel@yesql.se>
Tue, 27 Jul 2021 20:38:45 +0000 (22:38 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Tue, 27 Jul 2021 20:38:45 +0000 (22:38 +0200)
The referred to library is NSPR, so fix the switched around characters.

src/tool_main.c

index 9f16a4e27864cda89affa96cbad70532c2d32a69..b40c8e9a80dba0a7b2f38d8c6c892f187c0f2de2 100644 (file)
@@ -214,7 +214,7 @@ static void main_free(struct GlobalConfig *config)
   convert_cleanup();
 #ifdef USE_NSS
   if(PR_Initialized()) {
-    /* prevent valgrind from reporting still reachable mem from NSRP arenas */
+    /* prevent valgrind from reporting still reachable mem from NSPR arenas */
     PL_ArenaFinish();
     /* prevent valgrind from reporting possibly lost memory (fd cache, ...) */
     PR_Cleanup();