ID |
Date |
Icon |
Author |
Author Email |
Category |
OS |
ELOG Version |
Subject |
474
|
Fri Feb 13 21:59:44 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | | Linux | 2.5.0 | Re: elog (not elogd) submit does not work anymore |
Oops! I 're-used' the '-s' flag for email suppression, so it was actually
double used. I changed the email supprssion flag to '-p', so '-s' should
work again for specifying subdirectories. |
473
|
Fri Feb 13 21:52:48 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | | Linux | 2.5.0 | Re: -W -Wall options (using gcc) |
Thanks, I did so. |
472
|
Fri Feb 13 21:50:59 2004 |
| Fergus Lynch | flynch@alternativenetworks.com | | Linux | Windows | Mac OSX | ELOG V2.5.0 | Re: Behaviour of text when using "quote marks" in header fields |
> Like this one ^^^ ???
>
> I'm joking! I fixed the bug and updated the elogd server. Please find the new
> version under CVS.
>
> - Stefan
Blimey! That was quick!
Many thanks for amending this. You'll be pleased to hear that my IT Operations
Team think this is the best thing since sliced bread...its going to replace a
blizzard of spreadsheets.
Cheers
Fergus |
471
|
Fri Feb 13 21:50:09 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | | Linux | 2.5.0 | Re: segmentation fault |
This problem has been fixed recently. The new code is
/* special case: "Change %s" */
if (strstr(orig, "Change ") && strcmp(orig, "Change %s") != 0) {
sprintf(result, loc("Change %s"), orig + 7);
return result;
}
Alternatively you can get the updated version from CVS.
- Stefan |
470
|
Fri Feb 13 21:34:57 2004 |
| Stefan Ritt | stefan.ritt@psi.ch | | Linux | Windows | Mac OSX | ELOG V2.5.0 | Re: Behaviour of text when using "quote marks" in header fields |
Like this one ^^^ ???
I'm joking! I fixed the bug and updated the elogd server. Please find the new
version under CVS.
- Stefan |
469
|
Fri Feb 13 12:25:15 2004 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | | Linux | 2.5.0 | -W -Wall options (using gcc) |
Maybe consider using the options -W -Wall when compiling elogd.
There are several warning messages. |
468
|
Fri Feb 13 12:21:25 2004 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | | Linux | 2.5.0 | elog (not elogd) submit does not work anymore |
Somehow elog does not use the -s option (subdir) anymore,
resulting in a 'HTTP/1.1 404 Not Found' error.
For now I am using elog from version 2.3.9 together with elogd v2.5.0,
which seems to work OK. |
467
|
Fri Feb 13 12:18:19 2004 |
| Heiko Scheit | h.scheit@mpi-hd.mpg.de | | Linux | 2.5.0 | segmentation fault |
Around line 2240 (in loc()) in elogd.c the following is written,
which results in an infinite loop, since loc() recursively with
the same argument "Change %s".
/* special case: "Change %s" */
if (strstr(orig, "Change ")) {
sprintf(result, loc("Change %s"), orig + 7);
return result;
}
For now I just commented these lines. |