Mercurial > noffle
comparison src/fetch.c @ 61:adf0af5152f7 noffle
[svn] Renamed some variables and function names, because they caused compiler
warnings because of shadowing global variables from system include files
(index, stat, serv).
author | enz |
---|---|
date | Fri, 12 May 2000 18:19:38 +0100 |
parents | 125d79c9e586 |
children | 28aeb0b93509 |
comparison
equal
deleted
inserted
replaced
60:defaa632baae | 61:adf0af5152f7 |
---|---|
1 /* | 1 /* |
2 fetch.c | 2 fetch.c |
3 | 3 |
4 $Id: fetch.c 60 2000-05-09 22:28:38Z uh1763 $ | 4 $Id: fetch.c 67 2000-05-12 17:19:38Z enz $ |
5 */ | 5 */ |
6 | 6 |
7 #if HAVE_CONFIG_H | 7 #if HAVE_CONFIG_H |
8 #include <config.h> | 8 #include <config.h> |
9 #endif | 9 #endif |
139 Fetchlist_read(); | 139 Fetchlist_read(); |
140 size = Fetchlist_size(); | 140 size = Fetchlist_size(); |
141 for ( i = 0; i < size; ++i ) | 141 for ( i = 0; i < size; ++i ) |
142 { | 142 { |
143 Fetchlist_element( &name, &mode, i ); | 143 Fetchlist_element( &name, &mode, i ); |
144 if ( strcmp( Grp_serv( name ), fetch.serv ) == 0 ) | 144 if ( strcmp( Grp_server( name ), fetch.serv ) == 0 ) |
145 Fetch_getNewArts( name, mode ); | 145 Fetch_getNewArts( name, mode ); |
146 } | 146 } |
147 } | 147 } |
148 | 148 |
149 void | 149 void |