From: Daniel Gustafsson Date: Tue, 27 Jul 2021 20:38:45 +0000 (+0200) Subject: tool_main: fix typo in comment X-Git-Tag: curl-7_79_0~160 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d680e4a8fa578b00bb56ba7e9a7fd2f926b2beb;p=thirdparty%2Fcurl.git tool_main: fix typo in comment The referred to library is NSPR, so fix the switched around characters. --- diff --git a/src/tool_main.c b/src/tool_main.c index 9f16a4e278..b40c8e9a80 100644 --- a/src/tool_main.c +++ b/src/tool_main.c @@ -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();