Ignore:
Timestamp:
2007-04-15T22:39:35Z (17 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
84b045d
Parents:
cd4723c
Message:

Cleaned up struct im_connection. No more username/password stuff since
it's in acc too. wants_to_die is now an argument to imc_logout().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber.c

    rcd4723c rc2fb3809  
    7373        {
    7474                imc_error( ic, "Incomplete account name (format it like <username@jabberserver.name>)" );
    75                 imc_logout( ic );
     75                imc_logout( ic, FALSE );
    7676                return;
    7777        }
     
    166166                imc_log( ic, "Incorrect port number, must be in the %d-%d range",
    167167                               JABBER_PORT_MIN, JABBER_PORT_MAX );
    168                 imc_logout( ic );
     168                imc_logout( ic, FALSE );
    169169                return;
    170170        }
     
    187187        {
    188188                imc_error( ic, "Could not connect to server" );
    189                 imc_logout( ic );
     189                imc_logout( ic, TRUE );
    190190        }
    191191}
Note: See TracChangeset for help on using the changeset viewer.