]> git.ipfire.org Git - thirdparty/sarg.git/blame - indexonly.c
LDAP usertab feature added
[thirdparty/sarg.git] / indexonly.c
CommitLineData
25697a35 1/*
c37945ed 2 * AUTHOR: Pedro Lineu Orso pedro.orso@gmail.com
e3af0ae9 3 * 1998, 2009
94ff9470 4 * SARG Squid Analysis Report Generator http://sarg.sourceforge.net
25697a35
GS
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"
5f3cfd1d 27#include "include/defs.h"
25697a35
GS
28
29
32e71fa4 30void index_only(const char *dirname,int debug)
25697a35 31{
25697a35
GS
32 DIR *dirp;
33 struct dirent *direntp;
34 char remove[MAXLEN];
35
25697a35
GS
36 dirp = opendir(dirname);
37 while ( (direntp = readdir( dirp )) != NULL ){
38 if(strcmp(direntp->d_name,".") == 0 || strcmp(direntp->d_name,"..") == 0 || strcmp(direntp->d_name, "index.html") == 0)
39 continue;
40
41 sprintf(remove,"%s/%s",dirname,direntp->d_name);
42 unlink(remove);
43 }
44
25697a35
GS
45 (void)closedir( dirp );
46
47 return;
48}