From b535dd9b638a13ba97ab31bbce3b21e24f7902df Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Sun, 10 Jun 2007 22:59:51 +0000 Subject: [PATCH] corrected exception message (will send out error reply again) git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@364 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/AmSessionContainer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/AmSessionContainer.cpp b/core/AmSessionContainer.cpp index 1d37213d..07e77993 100644 --- a/core/AmSessionContainer.cpp +++ b/core/AmSessionContainer.cpp @@ -316,7 +316,7 @@ AmSession* AmSessionContainer::createSession(AmSipRequest& req, plugin_name = getHeader(req.hdrs,APPNAME_HDR); if(plugin_name.empty()) { - string ex = "AmSessionContainer::createSession: missing '" APPNAME_HDR "' header.\n"; + string ex = "AmSessionContainer::createSession: missing '" APPNAME_HDR "' header."; throw ex; } }