X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Fpazpar2.c;h=34bbf42457b7e4e7fa68f1908fac77df07373438;hb=f7247294488509fca6dc8e0d32f63cd8ae51b555;hp=5070a10e9757b0f2d49ff5987105eac88c38b90f;hpb=4371cb7e3302b0f42832327f5a94946ddceeb731;p=pazpar2-moved-to-github.git diff --git a/src/pazpar2.c b/src/pazpar2.c index 5070a10..34bbf42 100644 --- a/src/pazpar2.c +++ b/src/pazpar2.c @@ -90,7 +90,6 @@ static int sc_main( char *arg; const char *pidfile = 0; const char *uid = 0; - int session_timeout = 60; const char *listener_override = 0; const char *config_fname = 0; struct conf_config *config = 0; @@ -106,7 +105,7 @@ static int sc_main( yaz_log_init_prefix("pazpar2"); yaz_log_xml_errors(0, YLOG_WARN); - while ((ret = options("dDf:h:l:p:tT:u:VX", argv, argc, &arg)) != -2) + while ((ret = options("dDf:h:l:p:tu:VX", argv, argc, &arg)) != -2) { switch (ret) { @@ -132,16 +131,6 @@ static int sc_main( case 't': test_mode = 1; break; - case 'T': - session_timeout = atoi(arg); - if (session_timeout < 9 || session_timeout > 86400) - { - yaz_log(YLOG_FATAL, "Session timeout out of range 10..86400: %d", - session_timeout); - return 1; - } - global_parameters.session_timeout = session_timeout; - break; case 'u': uid = arg; break; @@ -159,7 +148,6 @@ static int sc_main( " -l file Log to file\n" " -p pidfile PID file\n" " -t Test configuration\n" - " -T session_timeout Session timeout\n" " -u uid Change user to uid\n" " -V Show version\n" " -X Debug mode\n"