comparison src/fetch.c @ 274:755e03bc7dcf noffle

[svn] * src/fetch.c,src/log.c: Make 'fetch' and 'log' variables static; they're not used outside their respective modules and cause a name clash on MacOS X.
author bears
date Sun, 10 Nov 2002 15:24:43 +0000
parents 3477050e8d10
children 39d9c19ffba4
comparison
equal deleted inserted replaced
273:18d6c61ed4e7 274:755e03bc7dcf
1 /* 1 /*
2 fetch.c 2 fetch.c
3 3
4 $Id: fetch.c 403 2002-11-10 11:32:17Z bears $ 4 $Id: fetch.c 406 2002-11-10 15:24:43Z bears $
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
40 #include "util.h" 40 #include "util.h"
41 #include "portable.h" 41 #include "portable.h"
42 42
43 #define MAX_ARTICLE_CMDS_QUEUED 20 43 #define MAX_ARTICLE_CMDS_QUEUED 20
44 44
45 struct Fetch 45 static struct Fetch
46 { 46 {
47 Bool ready; 47 Bool ready;
48 Str serv; 48 Str serv;
49 } fetch = { FALSE, "" }; 49 } fetch = { FALSE, "" };
50 50