]> git.ipfire.org Git - thirdparty/sarg.git/blame - language.c
All the sprintf/fputs have been replaced by fprintf to avoid an intermediary buffer...
[thirdparty/sarg.git] / language.c
CommitLineData
c37945ed
FM
1/*
2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
3 * 1998, 2008
4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
5 *
6 * SARG donations:
7 * please look at http://sarg.sourceforge.net/donations.php
8 * ---------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
23 *
24 */
25
26#include "include/conf.h"
27
32e71fa4 28void language_load(const char *language)
c37945ed 29{
4bcb77cf 30 char lfile[FILENAME_MAX];
c37945ed
FM
31 FILE *fp_text;
32 int record=0;
33
32e71fa4
FM
34 if (snprintf(lfile,sizeof(lfile),"%s/languages/%s",SYSCONFDIR,language)>=sizeof(lfile)) {
35 fprintf(stderr, "SARG: (language) language name is too long: %s/languages/%s\n",SYSCONFDIR,language);
36 exit(1);
37 }
c37945ed 38
4bcb77cf
FM
39 if((fp_text=fopen(lfile,"r"))==NULL) {
40 fprintf(stderr, "SARG: (language) Cannot open language file: %s\n",lfile);
c37945ed
FM
41 exit(1);
42 }
43
44 while(fgets(buf,MAXLEN,fp_text)!=NULL) {
4bcb77cf
FM
45 if (getword(warea,sizeof(warea),buf,'"')<0 || getword(warea,sizeof(warea),buf,'"')<0) {
46 printf("SARG: Maybe you have a broken record or garbage in your %s file.\n",lfile);
47 exit(1);
48 }
c37945ed
FM
49 strcpy(text[record],warea);
50
51 if(langcode)
32e71fa4 52 printf("%d %s\n",record,warea);
c37945ed
FM
53
54 record++;
55 }
56
57 fclose(fp_text);
58
59 return;
60}