index.c getconf.c usage.c decomp.c ip2name.c ip2name_dns.c
useragent.c exclude.c convlog.c totday.c repday.c datafile.c
indexonly.c splitlog.c lastlog.c topsites.c siteuser.c css.c
- smartfilter.c denied.c authfail.c charset.c dichotomic.c
+ smartfilter.c denied.c authfail.c dichotomic.c
redirector.c auth.c download.c grepday.c ip2name_exec.c
dansguardian_log.c dansguardian_report.c realtime.c btree_cache.c
usertab.c userinfo.c longline.c url.c fnmatch.c stringbuffer.c
index.c getconf.c usage.c decomp.c ip2name.c ip2name_dns.c \
useragent.c exclude.c convlog.c totday.c repday.c datafile.c\
indexonly.c splitlog.c lastlog.c topsites.c siteuser.c css.c \
- smartfilter.c denied.c authfail.c charset.c dichotomic.c \
+ smartfilter.c denied.c authfail.c dichotomic.c \
redirector.c auth.c download.c grepday.c ip2name_exec.c \
dansguardian_log.c dansguardian_report.c realtime.c btree_cache.c \
usertab.c userinfo.c longline.c url.c fnmatch.c stringbuffer.c \
+++ /dev/null
-/*
- * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
- * 1998, 2013
- *
- * SARG donations:
- * please look at http://sarg.sourceforge.net/donations.php
- * Support:
- * http://sourceforge.net/projects/sarg/forums/forum/363374
- * ---------------------------------------------------------------------
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
- *
- */
-
-#include "include/conf.h"
-#include "include/defs.h"
-
-void ccharset(char *CharSet)
-{
- if(strcmp(CharSet,"Latin2") == 0) strcpy(CharSet,"ISO-8859-2");
- else if(strcmp(CharSet,"Latin3") == 0) strcpy(CharSet,"ISO-8859-3");
- else if(strcmp(CharSet,"Latin4") == 0) strcpy(CharSet,"ISO-8859-4");
- else if(strcmp(CharSet,"Cyrillic") == 0) strcpy(CharSet,"ISO-8859-5");
- else if(strcmp(CharSet,"Arabic") == 0) strcpy(CharSet,"ISO-8859-6");
- else if(strcmp(CharSet,"Greek") == 0) strcpy(CharSet,"ISO-8859-7");
- else if(strcmp(CharSet,"Hebrew") == 0) strcpy(CharSet,"ISO-8859-8");
- else if(strcmp(CharSet,"Latin5") == 0) strcpy(CharSet,"ISO-8859-9");
- else if(strcmp(CharSet,"Latin6") == 0) strcpy(CharSet,"ISO-8859-10");
- else if(strcmp(CharSet,"Windows-1251") == 0) strcpy(CharSet,"Windows-1251");
- else if(strcmp(CharSet,"Japan") == 0) strcpy(CharSet,"EUC-JP");
- else if(strcmp(CharSet,"Koi8-r") == 0) strcpy(CharSet,"KOI8-R");
- else if(strcmp(CharSet,"UTF-8") == 0) strcpy(CharSet,"UTF-8");
- return;
-}
return(1);
}
+static void ccharset(char *CharSet)
+{
+ if (strcmp(CharSet,"Latin2") == 0) strcpy(CharSet,"ISO-8859-2");
+ else if (strcmp(CharSet,"Latin3") == 0) strcpy(CharSet,"ISO-8859-3");
+ else if (strcmp(CharSet,"Latin4") == 0) strcpy(CharSet,"ISO-8859-4");
+ else if (strcmp(CharSet,"Cyrillic") == 0) strcpy(CharSet,"ISO-8859-5");
+ else if (strcmp(CharSet,"Arabic") == 0) strcpy(CharSet,"ISO-8859-6");
+ else if (strcmp(CharSet,"Greek") == 0) strcpy(CharSet,"ISO-8859-7");
+ else if (strcmp(CharSet,"Hebrew") == 0) strcpy(CharSet,"ISO-8859-8");
+ else if (strcmp(CharSet,"Latin5") == 0) strcpy(CharSet,"ISO-8859-9");
+ else if (strcmp(CharSet,"Latin6") == 0) strcpy(CharSet,"ISO-8859-10");
+ else if (strcmp(CharSet,"Japan") == 0) strcpy(CharSet,"EUC-JP");
+ else if (strcmp(CharSet,"Koi8-r") == 0) strcpy(CharSet,"KOI8-R");
+ /*
+ * Any other encoding name is left unchanged.
+ */
+ return;
+}
+
static void parmtest(char *buf)
{
char wbuf[2048];