~ubuntu-branches/ubuntu/raring/ekiga/raring-proposed

« back to all changes in this revision

Viewing changes to lib/engine/components/local-roster/local-presentity.cpp

  • Committer: Package Import Robot
  • Author(s): Kilian Krause, Eugen Dedu, Kilian Krause
  • Date: 2013-03-02 13:06:36 UTC
  • mfrom: (5.1.8)
  • Revision ID: package-import@ubuntu.com-20130302130636-8f3gtgju4duvkvod
Tags: 4.0.1-1
[ Eugen Dedu ]
* New upstream stable release
* Really add ekiga-plugin-evolution package (Closes: 520830)

[ Kilian Krause ]
* Add missing ${shlibs:Depends} to ekiga-plugin-evolution
* Fix debhelper build-depends (upgrade to >=9) due to compat level

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  const size_t end_str = uri.find_last_not_of (" \t");
56
56
  const size_t range = end_str - begin_str + 1;
57
57
  uri = uri.substr (begin_str, range);
58
 
  size_t pos = uri.find (":");
 
58
  const size_t pos = uri.find (":");
59
59
  if (pos == std::string::npos)
60
60
    uri = uri.insert (0, "sip:");
61
 
  pos = uri.find ("@");
62
 
  if (pos == std::string::npos)
63
 
    uri = uri + "@ekiga.net";
64
61
  return uri;
65
62
}
66
63