bogus warning: Parameter -D must contain one '=' character
----------------------------------------------------------
Key: DAEMON-90
URL: http://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.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]