From b9963000bcd9f70c6ad30c7fc22ccf89c9686943 Mon Sep 17 00:00:00 2001 From: Raphael Coeffic Date: Thu, 6 Mar 2008 00:42:35 +0000 Subject: [PATCH] corrected typo in comment. git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@769 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/AmSipDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/AmSipDialog.cpp b/core/AmSipDialog.cpp index 31e44b41..f2a19553 100644 --- a/core/AmSipDialog.cpp +++ b/core/AmSipDialog.cpp @@ -519,10 +519,10 @@ int AmSipDialog::cancel() AmSipRequest req; req.method = "CANCEL"; - //usefull for SER-0.9.6/Open~ + //useful for SER-0.9.6/Open~ req.callid = callid; req.cseq = cseq; - //usefull for SER-2.0.0 + //useful for SER-2.0.0 req.serKey = serKey; string empty; return AmServer::sendRequest(req, empty) ? 0 : -1; @@ -580,7 +580,7 @@ int AmSipDialog::sendRequest(const string& method, req.body = body; } - if (AmServer::sendRequest(req, serKey)) + if (AmServer::sendRequest(req, serKey)) return -1; uac_trans[cseq] = AmSipTransaction(method,cseq);