summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ServerI.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-12-14 20:20:15 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-12-14 20:20:15 +0000
commit79e5b5ce3ebeea21462a59b310d6088ba51737f4 (patch)
tree15b486a620c4925f5758c9893e2c2eadb20df402 /cpp/src/IceGrid/ServerI.cpp
parentFixed bug 1286 and support for property attribute in the object descriptor. (diff)
downloadice-79e5b5ce3ebeea21462a59b310d6088ba51737f4.tar.bz2
ice-79e5b5ce3ebeea21462a59b310d6088ba51737f4.tar.xz
ice-79e5b5ce3ebeea21462a59b310d6088ba51737f4.zip
Win32 fix
Diffstat (limited to 'cpp/src/IceGrid/ServerI.cpp')
-rw-r--r--cpp/src/IceGrid/ServerI.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/IceGrid/ServerI.cpp b/cpp/src/IceGrid/ServerI.cpp
index 8996219decc..51ecb0013b1 100644
--- a/cpp/src/IceGrid/ServerI.cpp
+++ b/cpp/src/IceGrid/ServerI.cpp
@@ -1979,16 +1979,16 @@ ServerI::updateImpl(const ServerInfo& info)
_stdOutFile = outputDir.empty() ? string() : (outputDir + "/" + _id + ".out");
string suffix = _node->getRedirectErrToOut() ? ".out" : ".err";
_stdErrFile = outputDir.empty() ? string() : (outputDir + "/" + _id + suffix);
- PropertyDescriptorSeq::const_iterator t;
- for(t = _info.descriptor->propertySet.properties.begin(); t != _info.descriptor->propertySet.properties.end(); ++t)
+ PropertyDescriptorSeq::const_iterator s;
+ for(s = _info.descriptor->propertySet.properties.begin(); s != _info.descriptor->propertySet.properties.end(); ++s)
{
- if(t->name == "Ice.StdErr")
+ if(s->name == "Ice.StdErr")
{
- _stdErrFile = t->value;
+ _stdErrFile = s->value;
}
- else if(t->name == "Ice.StdOut")
+ else if(s->name == "Ice.StdOut")
{
- _stdOutFile = t->value;
+ _stdOutFile = s->value;
}
}