From 6287e6063a40bfa9d854ad359876992eae2608f0 Mon Sep 17 00:00:00 2001 From: niansa Date: Thu, 13 Apr 2023 13:53:30 +0200 Subject: [PATCH] Improved a comment --- nss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nss.c b/nss.c index 1db137e..cbed317 100644 --- a/nss.c +++ b/nss.c @@ -22,7 +22,7 @@ SECStatus SSL_SetURL(PRFileDesc *fd, const char *url) { static typeof(SSL_SetURL) *orig = NULL; if (!orig) orig = dlsym(RTLD_NEXT, "SSL_SetURL"); - // Don't do anything if domain isn't blocked + // Call original function as-is if domain isn't blocked if (!is_domain_blocked(url)) { return orig(fd, url); }