[ 
https://issues.apache.org/jira/browse/DAEMON-90?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mladen Turk resolved DAEMON-90.
-------------------------------

    Resolution: Fixed

Resolved

> bogus warning: Parameter -D must contain one '=' character
> ----------------------------------------------------------
>
>                 Key: DAEMON-90
>                 URL: https://issues.apache.org/jira/browse/DAEMON-90
>             Project: Commons Daemon
>          Issue Type: Bug
>    Affects Versions: Nightly Builds
>            Reporter: Marcus Better
>            Priority: Trivial
>
> This warning, printed in -debug mode, is bogus. There may be -D parameters 
> that set a property with no value, as in
>   -D java.security.manager
> for example. The message can just be removed with no ill effects. See patch 
> below.
> Index: src/native/unix/native/arguments.c
> ===================================================================
> --- src/native/unix/native/arguments.c  (revision 2810)
> +++ src/native/unix/native/arguments.c  (arbetskopia)
> @@ -181,9 +181,6 @@
>          } else if (strstr(argv[x],"-D")==argv[x]) {
>              temp=strchr(argv[x],'=');
> -            if (temp==NULL) {
> -                log_debug("Parameter -D must contain one '=' character");
> -            }
>              if (temp==argv[x]+2) {
>                  log_error("A property name must be specified before '='");
>                  return(NULL);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to