X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=errlog.c;h=a085227e18ef536644d435861030035ff6c942e1;hb=d11c0b23db68f8d8f2d620c1f9bb2b321a669d4f;hp=df5d09c9e4035a2f9e834e1154ff03c9f7d836f8;hpb=b0dfc691e79ad10ecb87dfac4070a48b010adb6f;p=privoxy.git diff --git a/errlog.c b/errlog.c index df5d09c9..a085227e 100644 --- a/errlog.c +++ b/errlog.c @@ -6,7 +6,7 @@ * printf-like fashion. * * Copyright : Written by and Copyright (C) 2001-2014 the - * Privoxy team. http://www.privoxy.org/ + * Privoxy team. https://www.privoxy.org/ * * Based on the Internet Junkbuster originally written * by and Copyright (C) 1997 Anonymous Coders and @@ -799,7 +799,7 @@ void log_error(int loglevel, const char *fmt, ...) break; case 'c': /* - * Note that char paramaters are converted to int, so we need to + * Note that char parameters are converted to int, so we need to * pass "int" to va_arg. (See K&R, 2nd ed, section A7.3.2, page 202) */ tempbuf[0] = (char) va_arg(ap, int); @@ -964,10 +964,6 @@ void log_error(int loglevel, const char *fmt, ...) * * Description : Translates JB_ERR_FOO codes into strings. * - * XXX: the type of error codes is jb_err - * but the typedef'inition is currently not - * visible to all files that include errlog.h. - * * Parameters : * 1 : jb_error = a valid jb_err code *