Navigation


Changeset 994:1e1d6f94cd94 in freeDiameter for libfdcore/config.c


Ignore:
Timestamp:
Mar 18, 2013, 9:22:07 PM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Remove more newlines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfdcore/config.c

    r983 r994  
    262262        /* Check that TLS private key was given */
    263263        if (! fd_g_config->cnf_sec_data.key_file) {
    264                 TRACE_ERROR( "Missing private key configuration for TLS. Please provide the TLS_cred configuration directive.\n");
     264                TRACE_ERROR( "Missing private key configuration for TLS. Please provide the TLS_cred configuration directive.");
    265265                return EINVAL;
    266266        }
     
    295295                ret = getaddrinfo(buf, NULL, &hints, &info);
    296296                if (ret != 0) {
    297                         TRACE_ERROR( "Error resolving local FQDN :\n"
    298                                         " '%s' : %s\n"
    299                                         "Please provide Identity in configuration file.\n",
     297                        TRACE_ERROR( "Error resolving local FQDN : '%s' : %s"
     298                                        ". Please provide Identity in configuration file.",
    300299                                        buf, gai_strerror(ret));
    301300                        return EINVAL;
     
    315314                start = strchr(fd_g_config->cnf_diamid, '.');
    316315                if ((start == NULL) || (start[1] == '\0')) {
    317                         TRACE_ERROR( "Unable to extract realm from the Identity '%s'.\n"
    318                                         "Please fix your Identity setting or provide Realm.\n",
     316                        TRACE_ERROR( "Unable to extract realm from the Identity '%s'."
     317                                        " Please fix your Identity setting or provide Realm.",
    319318                                        fd_g_config->cnf_diamid);
    320319                        return EINVAL;
     
    329328        /* Validate some flags */
    330329        if (fd_g_config->cnf_flags.no_ip4 && fd_g_config->cnf_flags.no_ip6) {
    331                 TRACE_ERROR( "IP and IPv6 cannot be disabled at the same time.\n");
     330                TRACE_ERROR( "IP and IPv6 cannot be disabled at the same time.");
    332331                return EINVAL;
    333332        }
    334333        if (fd_g_config->cnf_flags.no_tcp && fd_g_config->cnf_flags.no_sctp) {
    335                 TRACE_ERROR( "TCP and SCTP cannot be disabled at the same time.\n");
     334                TRACE_ERROR( "TCP and SCTP cannot be disabled at the same time.");
    336335                return EINVAL;
    337336        }
Note: See TracChangeset for help on using the changeset viewer.