Ignore:
Timestamp:
Aug 1, 2008, 4:43:22 PM (15 years ago)
Author:
charles
Message:

minor text cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libtransmission/handshake.c

    r6050 r6425  
    287287    public_key = tr_cryptoGetMyPublicKey( handshake->crypto, &len );
    288288    assert( len == KEY_LEN );
    289     assert( public_key != NULL );
     289    assert( public_key );
    290290    evbuffer_add( outbuf, public_key, len );
    291291
     
    10581058tr_handshakeGetAddr( const struct tr_handshake * handshake, uint16_t * port )
    10591059{
    1060     assert( handshake != NULL );
    1061     assert( handshake->io != NULL );
     1060    assert( handshake );
     1061    assert( handshake->io );
    10621062
    10631063    return tr_peerIoGetAddress( handshake->io, port );
Note: See TracChangeset for help on using the changeset viewer.