X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=options.c;h=9274eb193f5913073f4a3cccb4b60e7978f6e040;hp=081e2c5a5fea616dbc2187eb76d238f0972a869e;hb=034d3a91404addedc1c7a3494862c79532b0b878;hpb=f6aea744f84e702b3469393f007b9e1bf25f6737 diff --git a/options.c b/options.c index 081e2c5..9274eb1 100644 --- a/options.c +++ b/options.c @@ -35,7 +35,8 @@ struct options options = { 0700, /* rights of lcr admin socket */ -1, /* socket user (-1= no change) */ -1, /* socket group (-1= no change) */ - 1, /* use polling of main loop */ + 0, /* use polling of main loop */ + "/root", /* OTP directory */ }; char options_error[256]; @@ -235,6 +236,13 @@ int read_options(char *options_error) } else if (!strcmp(option,"polling")) { options.polling = 1; + } else + if (!strcmp(option,"otp-dir")) { + if (param[0]==0) { + UPRINT(options_error, "Error in %s (line %d): parameter for option %s missing.\n", filename,line,option); + goto error; + } + SCPY(options.otp_dir, param); } else { UPRINT(options_error, "Error in %s (line %d): wrong option keyword %s.\n", filename,line,option); goto error;