From 3db676e9227bcdaa50c5146c73dd0fbcd1d3b1bd Mon Sep 17 00:00:00 2001 From: tchernobog Date: Sun, 17 Sep 2006 22:32:11 +0000 Subject: [PATCH] - Fix typo git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1268 3ecf2c5c-341e-0410-92b4-d18e462d057c --- src/backend/resource_policies_gatekeeper.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/resource_policies_gatekeeper.cc b/src/backend/resource_policies_gatekeeper.cc index ee0e5e9..02b9a20 100644 --- a/src/backend/resource_policies_gatekeeper.cc +++ b/src/backend/resource_policies_gatekeeper.cc @@ -85,8 +85,8 @@ ResourcePoliciesGatekeeper::get_current_policy(History* history) throw(runtime_e PolicyIterator policy = _active_policies.find(history); if (policy == _active_policies.end()) - throw runtime_error(_("No active policy associated with this ") - _("history is available.")); + throw runtime_error(_("No active policy associated with this " + "history is available.")); return *policy->second; }