X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=main.c;h=1e85e39ddb0bebc88eb057f7bb023e8166a608aa;hp=35b972f30408f2d1aa1bcebe21569dc311ad5267;hb=034d3a91404addedc1c7a3494862c79532b0b878;hpb=cde9a763b10ce9fb98be413ded983fb1816ea258 diff --git a/main.c b/main.c index 35b972f..1e85e39 100644 --- a/main.c +++ b/main.c @@ -221,6 +221,12 @@ int main(int argc, char *argv[]) crc_init(); #endif +#ifdef WITH_VOOTP + /* init VoOTP */ + vootp_init(stderr); + vootp_loglevel(VOOTP_LOGL_INFO); +#endif + /* the mutex init */ if (pthread_mutex_init(&mutexd, NULL)) { fprintf(stderr, "cannot create 'PDEBUG' mutex\n"); @@ -257,7 +263,7 @@ int main(int argc, char *argv[]) /* query available isdn ports */ if (!(strcasecmp(argv[1],"query"))) { - int rc; + int __attribute__((__unused__)) rc; fprintf(stderr, "-> Using 'misdn_info'\n"); rc = system("misdn_info"); ret = 0;