diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-11-17 16:05:15 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-11-17 16:05:15 -0330 |
commit | c079aa2e122ac747ca1d601cdacb65e342e1fbf6 (patch) | |
tree | 79166e7bb1d27241545e2e6df04b1beeff16fb9c /cpp/src/IceGrid/SqlDB/SqlDB.cpp | |
parent | 4166 - Investigate appverifier (Added support to run test suite with it) (diff) | |
download | ice-c079aa2e122ac747ca1d601cdacb65e342e1fbf6.tar.bz2 ice-c079aa2e122ac747ca1d601cdacb65e342e1fbf6.tar.xz ice-c079aa2e122ac747ca1d601cdacb65e342e1fbf6.zip |
Fixed bunch of minor SQL issues
Diffstat (limited to 'cpp/src/IceGrid/SqlDB/SqlDB.cpp')
-rw-r--r-- | cpp/src/IceGrid/SqlDB/SqlDB.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/SqlDB/SqlDB.cpp b/cpp/src/IceGrid/SqlDB/SqlDB.cpp index a890d4cb9e7..1ba40c7f171 100644 --- a/cpp/src/IceGrid/SqlDB/SqlDB.cpp +++ b/cpp/src/IceGrid/SqlDB/SqlDB.cpp @@ -178,7 +178,7 @@ SqlDBPlugin::initialize() } else { - if(IceUtilInternal::directoryExists(dbPath)) + if(!IceUtilInternal::directoryExists(dbPath)) { ostringstream os; Ice::SyscallException ex(__FILE__, __LINE__); |