Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r34b17d9 rf4a5940  
    6161        conf->configdir = g_strdup( CONFIG );
    6262        conf->plugindir = g_strdup( PLUGINDIR );
    63         conf->pidfile = g_strdup( "/var/run/bitlbee.pid" );
    6463        conf->motdfile = g_strdup( ETCDIR "/motd.txt" );
    6564        conf->ping_interval = 180;
     
    7877        }
    7978       
    80         while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:h" ) ) >= 0 )
     79        while( argc > 0 && ( opt = getopt( argc, argv, "i:p:nvIDFc:d:h" ) ) >= 0 )
    8180        /*     ^^^^ Just to make sure we skip this step from the REHASH handler. */
    8281        {
     
    9392                        }
    9493                        conf->port = i;
    95                 }
    96                 else if( opt == 'p' )
    97                 {
    98                         g_free( conf->pidfile );
    99                         conf->pidfile = g_strdup( optarg );
    10094                }
    10195                else if( opt == 'n' )
     
    181175                                else
    182176                                        conf->runmode = RUNMODE_INETD;
    183                         }
    184                         else if( g_strcasecmp( ini->key, "pidfile" ) == 0 )
    185                         {
    186                                 g_free( conf->pidfile );
    187                                 conf->pidfile = g_strdup( ini->value );
    188177                        }
    189178                        else if( g_strcasecmp( ini->key, "daemoninterface" ) == 0 )
Note: See TracChangeset for help on using the changeset viewer.