~ubuntu-branches/ubuntu/quantal/pidgin/quantal

« back to all changes in this revision

Viewing changes to libpurple/protocols/myspace/user.c

  • Committer: Bazaar Package Importer
  • Author(s): Ari Pollak
  • Date: 2011-06-13 21:17:20 UTC
  • mfrom: (1.3.19 upstream)
  • mto: This revision was merged to the branch mainline in revision 73.
  • Revision ID: james.westby@ubuntu.com-20110613211720-ke87vzmdcuaxams7
Tags: 2.8.0-1
* Imported Upstream version 2.8.0 (Closes: #630124)
* Remove SILC support since the library will be orphaned (Closes: #629222)
* Fix typo in libpurple-bin description (Closes: #625462)

Show diffs side-by-side

added added

removed removed

Lines of Context:
565
565
{
566
566
        MsimMessage *body;
567
567
        gchar *field_name;
568
 
        guint rid, cmd, dsn, lid;
 
568
        guint rid, dsn, lid;
569
569
 
570
570
        g_return_if_fail(user != NULL);
571
571
        /* Callback can be null to not call anything, just lookup & store information. */
579
579
 
580
580
        /* Send request */
581
581
 
582
 
        cmd = MSIM_CMD_GET;
583
 
 
584
582
        if (msim_is_userid(user)) {
585
583
                field_name = "UserID";
586
584
                dsn = MG_MYSPACE_INFO_BY_ID_DSN;
602
600
        g_return_if_fail(msim_send(session,
603
601
                        "persist", MSIM_TYPE_INTEGER, 1,
604
602
                        "sesskey", MSIM_TYPE_INTEGER, session->sesskey,
605
 
                        "cmd", MSIM_TYPE_INTEGER, 1,
 
603
                        "cmd", MSIM_TYPE_INTEGER, MSIM_CMD_GET,
606
604
                        "dsn", MSIM_TYPE_INTEGER, dsn,
607
605
                        "uid", MSIM_TYPE_INTEGER, session->userid,
608
606
                        "lid", MSIM_TYPE_INTEGER, lid,