X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_daemon.c;h=ef6d83cb31fc86d7dcc28cad062d4cdba6249981;hb=ce692d2da65c1370c7fe64276f492a553f6d3da3;hp=9b8d9ee30cb59ae59d8d27de6b96f4b0a72cde95;hpb=9e2eb0abd095264f584490ede57ae5afe8beb748;p=rrdtool.git diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index 9b8d9ee..ef6d83c 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -2780,7 +2780,7 @@ static int read_options (int argc, char **argv) /* {{{ */ gid_t socket_group = (gid_t)-1; mode_t socket_permissions = (mode_t)-1; - while ((option = getopt(argc, argv, "gl:s:m:P:f:w:z:t:Bb:p:Fj:m:h?")) != -1) + while ((option = getopt(argc, argv, "gl:s:m:P:f:w:z:t:Bb:p:Fj:a:h?")) != -1) { switch (option) { @@ -3088,7 +3088,7 @@ static int read_options (int argc, char **argv) /* {{{ */ } break; - case 'm': + case 'a': { int temp = atoi(optarg); if (temp > 0) @@ -3096,7 +3096,7 @@ static int read_options (int argc, char **argv) /* {{{ */ else { fprintf(stderr, "Invalid allocation size: %s\n", optarg); - status = 10; + return 10; } } break; @@ -3127,6 +3127,7 @@ static int read_options (int argc, char **argv) /* {{{ */ "for that group)\n" " -m File permissions (octal) of all following UNIX " "sockets\n" + " -a Memory allocation chunk size. Default is 1." "\n" "For more information and a detailed description of all options " "please refer\n"