--- config.c 2001/01/19 13:12:46 1.18
+++ config.c 2001/01/19 14:56:33 1.19
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/Attic/config.c,v $
- $Revision: 1.18 $
+ $Revision: 1.19 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -154,7 +154,7 @@
int rc;
char * buffer;
struct stat sb;
- char* list_dir;
+ char* this_list_dir;
/* Format description of our global config file. */
@@ -211,7 +211,7 @@
/* No? Then read the config file. */
buffer = text_easy_sprintf("%s/%s/config", MasterConfig->list_dir, listname);
- list_dir = text_easy_sprintf("%s/%s", MasterConfig->list_dir, listname);
+ this_list_dir = text_easy_sprintf("%s/%s", MasterConfig->list_dir, listname);
if (stat(buffer, &sb) != 0)
{
free(buffer);
@@ -293,7 +293,7 @@
ListConfig->posting_password = posting_password;
ListConfig->postingfilter = postingfilter;
- ListConfig->list_dir = list_dir;
+ ListConfig->list_dir = this_list_dir;
#define EXPAND(dst, src) \
if (src == NULL || src[0] == '/') \
|