Changes in / [573e274:cc6fdf8]


Ignore:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • configure

    r573e274 rcc6fdf8  
    412412        echo
    413413        echo 'No detection code exists for OpenSSL. Make sure that you have a complete'
    414         echo 'install of OpenSSL (including devel/header files) before reporting'
     414        echo 'installation of OpenSSL (including devel/header files) before reporting'
    415415        echo 'compilation problems.'
    416416        echo
    417417        echo 'Also, keep in mind that the OpenSSL is, according to some people, not'
    418         echo 'completely GPL-compatible. Using GnuTLS or NSS is recommended and better'
    419         echo 'supported by us. However, on many BSD machines, OpenSSL can be considered'
    420         echo 'part of the operating system, which makes it GPL-compatible.'
     418        echo 'completely GPL-compatible. Using GnuTLS is recommended and better supported'
     419        echo 'by us. However, on many BSD machines, OpenSSL can be considered part of the'
     420        echo 'operating system, which makes it GPL-compatible.'
    421421        echo
    422422        echo 'For more info, see: http://www.openssl.org/support/faq.html#LEGAL2'
     
    425425        echo 'Please note that distributing a BitlBee binary which links to OpenSSL is'
    426426        echo 'probably illegal. If you want to create and distribute a binary BitlBee'
    427         echo 'package, you really should use GnuTLS or NSS instead.'
     427        echo 'package, you really should use GnuTLS instead.'
    428428        echo
    429429        echo 'Also, the OpenSSL license requires us to say this:'
  • lib/oauth2.c

    r573e274 rcc6fdf8  
    103103        struct oauth2_access_token_data *cb_data = req->data;
    104104        char *atoken = NULL, *rtoken = NULL;
    105         const char *content_type;
     105        char *content_type;
    106106       
    107107        if( getenv( "BITLBEE_DEBUG" ) && req->reply_body )
     
    146146       
    147147        cb_data->func( cb_data->data, atoken, rtoken );
     148        g_free( content_type );
    148149        g_free( atoken );
    149150        g_free( rtoken );
  • lib/xmltree.c

    r573e274 rcc6fdf8  
    163163        int i;
    164164       
    165         /* Just in case someone likes infinite loops... */
    166165        if( xt->root == NULL )
    167                 return 0;
     166                return 1;
    168167       
    169168        if( node == NULL )
  • protocols/jabber/si.c

    r573e274 rcc6fdf8  
    293293                }
    294294
    295                 *s = '/';
    296         }
    297         else
     295                if( s )
     296                        *s = '/';
     297        }
     298       
     299        if( !requestok )
    298300        {
    299301                reply = jabber_make_error_packet( node, "item-not-found", "cancel", NULL );
  • root_commands.c

    r573e274 rcc6fdf8  
    553553            ( a = account_get( irc->b, cmd[1] ) ) == NULL )
    554554        {
    555                 irc_rootmsg( irc, "Could not find account `%s'. Note that the syntax "
    556                              "of the account command changed, see \x02help account\x02.", cmd[1] );
     555                irc_rootmsg( irc, "Could not find account `%s'.", cmd[1] );
    557556               
    558557                return;
Note: See TracChangeset for help on using the changeset viewer.