summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-25 18:03:20 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-25 18:03:20 +0000
commit364c465628189a4f3dee6eac54ff48825c48e681 (patch)
treea7d51101d0fdfef43601b48965c2935059e617b6 /cpp/src/IcePatch/Client.cpp
parentcomments (diff)
downloadice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2
ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz
ice-364c465628189a4f3dee6eac54ff48825c48e681.zip
removed spaces
Diffstat (limited to 'cpp/src/IcePatch/Client.cpp')
-rw-r--r--cpp/src/IcePatch/Client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePatch/Client.cpp b/cpp/src/IcePatch/Client.cpp
index eef4467867f..c416bc8f966 100644
--- a/cpp/src/IcePatch/Client.cpp
+++ b/cpp/src/IcePatch/Client.cpp
@@ -131,12 +131,12 @@ IcePatch::Client::run(int argc, char* argv[])
{
router = starter->startRouter(id, pw, privateKey, publicKey, routerCert);
}
- catch (const Glacier::CannotStartRouterException& ex)
+ catch(const Glacier::CannotStartRouterException& ex)
{
cerr << appName() << ": " << ex << ":\n" << ex.reason << endl;
return EXIT_FAILURE;
}
- catch (const Glacier::InvalidPasswordException&)
+ catch(const Glacier::InvalidPasswordException&)
{
cout << "password is invalid, try again" << endl;
}
@@ -232,7 +232,7 @@ IcePatch::Client::run(int argc, char* argv[])
patch(topDesc->directory->getContents(), "");
}
}
- catch (const FileAccessException& ex)
+ catch(const FileAccessException& ex)
{
cout << endl; // There might still be a non-terminated line on cout.
cerr << appName() << ": " << ex << ":\n" << ex.reason << endl;
@@ -242,7 +242,7 @@ IcePatch::Client::run(int argc, char* argv[])
}
return EXIT_FAILURE;
}
- catch (const BusyException&)
+ catch(const BusyException&)
{
cout << endl; // There might still be a non-terminated line on cout.
cerr << appName() << ": patching service busy, try again later" << endl;