billbarker    2004/01/18 18:28:34

  Modified:    daemon/src/native/unix/native arguments.c
  Log:
  Remove the requirement that the '-D' option requires an '=' in it (since it doesn't 
:).
  
  Fix for bug #26201
  Reported By: Brian Whitehead [EMAIL PROTECTED]
  
  Revision  Changes    Path
  1.3       +2 -3      jakarta-commons/daemon/src/native/unix/native/arguments.c
  
  Index: arguments.c
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/daemon/src/native/unix/native/arguments.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- arguments.c       31 Dec 2003 04:58:31 -0000      1.2
  +++ arguments.c       19 Jan 2004 02:28:34 -0000      1.3
  @@ -200,8 +200,7 @@
           } else if (strstr(argv[x],"-D")==argv[x]) {
               temp=strchr(argv[x],'=');
               if (temp==NULL) {
  -                log_error("Parameter -D must contain one '=' character");
  -                return(NULL);
  +                log_debug("Parameter -D must contain one '=' character");
               }
               if (temp==argv[x]+2) {
                   log_error("A property name must be specified before '='");
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to