You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Bill Barker (JIRA)" <ji...@apache.org> on 2009/01/04 03:55:44 UTC

[jira] Commented: (DAEMON-90) bogus warning: Parameter -D must contain one '=' character

    [ https://issues.apache.org/jira/browse/DAEMON-90?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12660522#action_12660522 ] 

Bill Barker commented on DAEMON-90:
-----------------------------------

Patch has been applied, and will appear in the next release.

It seems I don't have enough Jira kara to resolve issues, so leaving it to someone else to resolve.

> 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.