Silly error, simple fix

arthursv
Melanie 2009-08-07 22:40:58 +01:00
parent e1427b4c3f
commit a1a09297bc
1 changed files with 2 additions and 2 deletions

View File

@ -187,8 +187,8 @@ namespace OpenSim
else
{
m_log.InfoFormat("Adding {0} to configuration", Path.Combine(Util.configDir(), file));
string base = Path.GetFullPath(Util.configDir());
string path = Path.Combine(base, file);
string basepath = Path.GetFullPath(Util.configDir());
string path = Path.Combine(basepath, file);
string[] paths = Util.Glob(path);
foreach (string p in paths)
{