Renamed variable to avoid a conflict.

git-svn-id: http://yate.null.ro/svn/yate/trunk@4942 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
oana 2012-02-23 15:27:15 +00:00
parent 8c7a071ec0
commit 615f9b93c7
1 changed files with 4 additions and 4 deletions

View File

@ -3206,16 +3206,16 @@ public:
/**
* Build an account id from protocol, username, host
* @param id Destination string
* @param accId Destination string
* @param proto Account protocol
* @param user Account username
* @param host Account host
* @return Destination string address
*/
static inline String& buildAccountId(String& id, const String& proto,
static inline String& buildAccountId(String& accId, const String& proto,
const String& user, const String& host) {
id = proto + ":" + user + "@" + host;
return id;
accId = proto + ":" + user + "@" + host;
return accId;
}
protected: