~ubuntu-branches/ubuntu/oneiric/transmission/oneiric

« back to all changes in this revision

Viewing changes to libtransmission/utils.c

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2011-03-31 17:34:58 UTC
  • Revision ID: james.westby@ubuntu.com-20110331173458-b1e2432ikhtqpdy4
Tags: 2.13-0ubuntu8
* debian/patches/0113-fix_support_for_ipv6_trackers.patch:
  - update patch to fix the crash it has introduced. (LP: #740614) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
768
768
    return ret;
769
769
}
770
770
 
 
771
int
 
772
tr_strcmp0( const char * str1, const char * str2 )
 
773
{
 
774
    if( str1 && str2 ) return strcmp( str1, str2 );
 
775
    if( str1 ) return 1;
 
776
    if( str2 ) return -1;
 
777
    return 0;
 
778
}
 
779
 
771
780
/****
772
781
*****
773
782
****/