Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    raefaac3a rdd14ecc  
    4545        conf = g_new0( conf_t, 1 );
    4646       
    47         conf->iface_in = NULL;
    48         conf->iface_out = NULL;
     47        conf->iface = NULL;
    4948        conf->port = g_strdup( "6667" );
    5049        conf->nofork = 0;
     
    8382                if( opt == 'i' )
    8483                {
    85                         conf->iface_in = g_strdup( optarg );
     84                        conf->iface = g_strdup( optarg );
    8685                }
    8786                else if( opt == 'p' )
     
    203202                        else if( g_strcasecmp( ini->key, "daemoninterface" ) == 0 )
    204203                        {
    205                                 g_free( conf->iface_in );
    206                                 conf->iface_in = g_strdup( ini->value );
     204                                g_free( conf->iface );
     205                                conf->iface = g_strdup( ini->value );
    207206                        }
    208207                        else if( g_strcasecmp( ini->key, "daemonport" ) == 0 )
     
    210209                                g_free( conf->port );
    211210                                conf->port = g_strdup( ini->value );
    212                         }
    213                         else if( g_strcasecmp( ini->key, "clientinterface" ) == 0 )
    214                         {
    215                                 g_free( conf->iface_out );
    216                                 conf->iface_out = g_strdup( ini->value );
    217211                        }
    218212                        else if( g_strcasecmp( ini->key, "authmode" ) == 0 )
Note: See TracChangeset for help on using the changeset viewer.