~ubuntu-branches/ubuntu/utopic/gnome-online-accounts/utopic

« back to all changes in this revision

Viewing changes to src/goaidentity/goaidentityutils.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Laurent Bigonville, Andreas Henriksson
  • Date: 2014-05-16 11:42:52 UTC
  • mfrom: (1.1.28) (0.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20140516114252-u5ect6mk6ht8i38x
Tags: 3.12.2-1
[ Laurent Bigonville ]
* debian/control.in: Recommends realmd package (Closes: #725965)

[ Andreas Henriksson ]
* New upstream release.
  - Removes chat support from Windows Live provider (XMPP gateway gone).
* Bump Standards-Version to 3.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 * Lesser General Public License for more details.
14
14
 *
15
15
 * You should have received a copy of the GNU Lesser General
16
 
 * Public License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
 
16
 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19
17
 *
20
18
 * Authors: Ray Strode
21
19
 */
23
21
#include "config.h"
24
22
 
25
23
#include "goaidentityutils.h"
26
 
#include "goalogging.h"
27
24
 
28
25
#include <string.h>
29
26
 
192
189
 
193
190
  if (type_class == NULL)
194
191
    {
195
 
      goa_warning ("GoaIdentityUtils: Could not identity type %s", type_name);
 
192
      g_warning ("GoaIdentityUtils: Could not identity type %s", type_name);
196
193
      goto out;
197
194
    }
198
195
 
208
205
                                                              enum_class->values[i].
209
206
                                                              value_nick);
210
207
 
211
 
      goa_debug ("GoaIdentityUtils: Registering dbus error %s", dbus_error_string);
 
208
      g_debug ("GoaIdentityUtils: Registering dbus error %s", dbus_error_string);
212
209
      g_dbus_error_register_error (error_domain,
213
210
                                   enum_class->values[i].value, dbus_error_string);
214
211
      g_free (dbus_error_string);