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); }