Changeset 7869e48 for libfaim/email.c


Ignore:
Timestamp:
Jan 12, 2013, 1:43:13 PM (11 years ago)
Author:
Jason Gross <jgross@mit.edu>
Children:
e3a0d71, 4485285
Parents:
4626016
git-author:
Jason Gross <jgross@mit.edu> (01/12/13 13:13:18)
git-committer:
Jason Gross <jgross@mit.edu> (01/12/13 13:43:13)
Message:
Remove trailing whitespace

This commit was made with the command sequence

    for i in $(git ls-files | tr '\n' ' ');
    do
      echo $i; sed -i s'/\s\+$//g' "$(readlink -f $i)";
    done
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfaim/email.c

    rcf02dd6 r7869e48  
    22 * Family 0x0018 - Email notification
    33 *
    4  * Used for being alerted when the email address(es) associated with 
    5  * your screen name get new electronic-m.  For normal AIM accounts, you 
    6  * get the email address screenname@netscape.net.  AOL accounts have 
     4 * Used for being alerted when the email address(es) associated with
     5 * your screen name get new electronic-m.  For normal AIM accounts, you
     6 * get the email address screenname@netscape.net.  AOL accounts have
    77 * screenname@aol.com, and can also activate a netscape.net account.
    88 *
     
    6565 * Subtype 0x0007 - Receive information about your email account
    6666 *
    67  * So I don't even know if you can have multiple 16 byte keys, 
     67 * So I don't even know if you can have multiple 16 byte keys,
    6868 * but this is coded so it will handle that, and handle it well.
    69  * This tells you if you have unread mail or not, the URL you 
    70  * should use to access that mail, and the domain name for the 
    71  * email account (screenname@domainname.com).  If this is the 
    72  * first 0x0007 SNAC you've received since you signed on, or if 
    73  * this is just a periodic status update, this will also contain 
     69 * This tells you if you have unread mail or not, the URL you
     70 * should use to access that mail, and the domain name for the
     71 * email account (screenname@domainname.com).  If this is the
     72 * first 0x0007 SNAC you've received since you signed on, or if
     73 * this is just a periodic status update, this will also contain
    7474 * the number of unread emails that you have.
    7575 */
     
    131131        alertitle = aim_tlv_getstr(tlvlist, 0x0005, 1);
    132132        alerturl  = aim_tlv_getstr(tlvlist, 0x000d, 1);
    133        
     133
    134134        if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
    135135                ret = userfunc(sess, rx, new, havenewmail, alertitle, (alerturl ? alerturl + 2 : NULL));
Note: See TracChangeset for help on using the changeset viewer.