1
0
Fork 0
mirror of https://gitlab.com/niansa/nosni.git synced 2025-03-06 20:53:26 +01:00

Improved a comment

This commit is contained in:
niansa/tuxifan 2023-04-13 13:53:30 +02:00
parent 67d51a4d8b
commit 6287e6063a

2
nss.c
View file

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