Navigation


Changeset 983:ab99bc1d5492 in freeDiameter for libfdcore/core.c


Ignore:
Timestamp:
Mar 17, 2013, 12:05:37 AM (11 years ago)
Author:
Sebastien Decugis <sdecugis@freediameter.net>
Branch:
default
Phase:
public
Message:

Remove some additional printf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/core.c

    r974 r983  
    194194        CHECK_GNUTLS_DO( gnutls_global_init(), return EINVAL );
    195195        if ( ! gnutls_check_version(GNUTLS_VERSION) ) {
    196                 fprintf(stderr, "The GNUTLS library is too old; found '%s', need '" GNUTLS_VERSION "'\n", gnutls_check_version(NULL));
     196                TRACE_ERROR( "The GNUTLS library is too old; found '%s', need '" GNUTLS_VERSION "'\n", gnutls_check_version(NULL));
    197197                return EINVAL;
    198198        } else {
     
    317317                ret = pthread_join(core_runner, &th_ret);
    318318                if (ret != 0) {
    319                         fprintf(stderr, "Unable to wait for main framework thread termination: %s\n", strerror(ret));
     319                        TRACE_ERROR( "Unable to wait for main framework thread termination: %s\n", strerror(ret));
    320320                        return ret;
    321321                }
Note: See TracChangeset for help on using the changeset viewer.