ekiga r6285 - in trunk: . lib/engine/addressbook/ldap



Author: dsandras
Date: Mon May 19 21:03:48 2008
New Revision: 6285
URL: http://svn.gnome.org/viewvc/ekiga?rev=6285&view=rev

Log:
Fixed bug reported by Peter Robinso, atoi is not a member of std.


Modified:
   trunk/ChangeLog
   trunk/lib/engine/addressbook/ldap/ldap-source.cpp

Modified: trunk/lib/engine/addressbook/ldap/ldap-source.cpp
==============================================================================
--- trunk/lib/engine/addressbook/ldap/ldap-source.cpp	(original)
+++ trunk/lib/engine/addressbook/ldap/ldap-source.cpp	Mon May 19 21:03:48 2008
@@ -182,7 +182,7 @@
     std::string base = result.text ("base");
     std::string scope = result.single_choice ("scope");
     std::string call_attribute = result.text ("call-attribute");
-    int port = std::atoi (port_string.c_str ());
+    int port = atoi (port_string.c_str ());
 
     add (name, hostname, port, base, scope, call_attribute);
     save ();



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]