[Bug 592576] Re: Parse error for workers.properties

2015-05-21 Thread Bug Watch Updater
** Changed in: libapache-mod-jk (Debian)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/592576/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2012-01-30 Thread Bug Watch Updater
** Changed in: libapache-mod-jk (Debian)
   Status: Unknown => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/592576/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2012-01-30 Thread Damien Raude-Morvan
** Bug watch added: Debian Bug tracker #635503
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635503

** Also affects: libapache-mod-jk (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635503
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/592576/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2011-07-27 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/libapache-mod-jk

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/592576/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2011-07-23 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/wheezy/libapache-mod-jk

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/592576/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2011-07-14 Thread Launchpad Bug Tracker
** Branch linked: lp:debian/libapache-mod-jk

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libapache-mod-jk/+bug/592576/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2010-12-05 Thread Rainer Jung
The patch provided in comment #2 is wrong.
Now fixed upstreams. Will be part of mod_jk version 1.2.32.

Details provided at

https://issues.apache.org/bugzilla/show_bug.cgi?id=50339

and

http://svn.apache.org/viewvc?view=revision&revision=1042364

Regards,

Rainer

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/592576

Title:
  Parse error for workers.properties

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2010-11-29 Thread Rainer Jung
This is also tracked in the ASF Bugzilla under

https://issues.apache.org/bugzilla/show_bug.cgi?id=50339

Could you try the following patch:

Index: common/jk_map.c
===
--- common/jk_map.c (revision 1032021)
+++ common/jk_map.c (working copy)
@@ -630,6 +630,7 @@
 static size_t trim(char *s)
 {
 size_t i;
+size_t off;

 /* check for empty strings */
 if (!(i = strlen(s)))
@@ -646,7 +647,10 @@
  isspace((int)((unsigned char)s[i])); i++);

 if (i > 0) {
-strcpy(s, &s[i]);
+for (off = i; '\0' != s[i]; i++); {
+s[i - off] = s[i];
+}
+s[i - off] = s[i];
 }

Tanks.

Rainer


** Bug watch added: Apache Software Foundation Bugzilla #50339
   http://issues.apache.org/bugzilla/show_bug.cgi?id=50339

-- 
Parse error for workers.properties
https://bugs.launchpad.net/bugs/592576
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 592576] Re: Parse error for workers.properties

2010-11-25 Thread Frank
I had the same problem on 10.04 LTS, but I built apache 2.2-17 and mod_jk 
1.2.31 myself.
For example the mod_jk parser read socket_tieout instead of timeout.
Removing all whitespaces from the beginning of all lines solved it.

-- 
Parse error for workers.properties
https://bugs.launchpad.net/bugs/592576
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs