| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| |
| |
| |
| | |
Conflicts:
ChangeLog
configure.ac
doc/manual.html
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
both from code & doc and emitted warning message if still used
closes: http://bugzilla.adiscon.com/show_bug.cgi?id=361
Thanks to Michael Biebl for reporting & suggestions
|
|\|
| |
| |
| |
| | |
Conflicts:
plugins/imuxsock/imuxsock.c
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This happened only under some circumstances. Thanks to Marius
Tomaschwesky, Florian Piekert and Milan Bartos for their help in
solving this issue.
Note that Milan sent a patch, which solved the problem under some
conditions (can be found somewhat earlier in git history). However,
it did not handle the original root cause, and so did not fix the
problem always. The main reason was that the date parser modifies
the provided lenghts. That part of the API was not properly
used by the caller (who decremented the length once more).
|
| |
| |
| |
| | |
modified: plugins/imuxsock/imuxsock.c
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
CEE originally specified the cookie with SP, whereas other lumberjack
tools used it without space. In order to keep interop with lumberjack,
we now use the cookie without space as well. I hope this can be changed
in CEE as well when it is released at a later time.
Thanks to Miloslav Trmač for pointing this out and a similiar v7 patch.
|
|\| |
|
| |
| |
| |
| |
| |
| |
| | |
Thanks to Michael Biebl for identifying this as the culprit for
several build-related issues. The plugin is a placeholder, and was
not used for quite some while. It is definitely not worth the effort
to keep it along. If needed, can be quickly created.
|
| |
| |
| |
| | |
libtool archives are not meant to be shipped in the source tarball.
|
| |
| |
| |
| | |
Thanks to Michael Biebl for alerting me of the problem.
|
| | |
|
| | |
|
|\| |
|
| | |
|
|\| |
|
| | |
|
| |
| |
| |
| |
| | |
The problem occured when using the -f (dynafiles) option,
and caused some tests to fail.
|
|\|
| |
| |
| |
| | |
Conflicts:
plugins/imrelp/imrelp.c
|
| | |
|
| |
| |
| |
| |
| |
| | |
Thanks to Andreas Stieger from Novell/SUSE for alerting us.
This function was introduced as part of the new config system,
but never was actually used (aka "not needed").
|
| |
| |
| |
| |
| |
| |
| |
| | |
The method introduced by the previous commit caused issues in v7 as it
was too generic. Most importantly, it permitted simple words (like "stop")
to (invalidly) be detected as pri filters. Now, the grammar is close
to the initial one, and each pri filter must at least have a comma or
a period inside it, which does not conflict with simple words.
|
| |
| |
| |
| |
| |
| | |
closes: http://bugzilla.adiscon.com/show_bug.cgi?id=358
This happend to filters of the style "local0,local1.*", where the
multiple facilities were comma-separated.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
modified: runtime/rsconf.c
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
This most importantly could happen due to configuration errors.
|
|\| |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This could lead to various problems, like if-filters not working.
Note this is a regression from yesterdays escape fix, so there exist
no released version with this problem.
|
| | |
|
| | |
|
| | |
|
|\|
| |
| |
| |
| | |
Conflicts:
runtime/rule.c
|
| |
| |
| |
| |
| |
| | |
...if action chaining (& operator) was used
http://bugzilla.adiscon.com/show_bug.cgi?id=355
Thanks to pilou@gmx.com for the bug report
|
| |
| |
| |
| |
| |
| |
| | |
Only \' was supported. Now the usual set is supported. Note that v5
used \x as escape where x was any character (e.g. "\n" meant "n" and NOT
LF). This also means there is some incompatibility to v5 for well-know
sequences. Better break it now than later.
|
| | |
|
|\|
| |
| |
| |
| | |
Conflicts:
ChangeLog
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
SCM_CREDENTIALS is not a socket option; its value is usually
0x2 which on most archs corresponds to socket option
SO_REUSEADDR, but on mips-arch there is no socket option
with value 0x2 and SO_REUSEADDR = 0x4, so the call will fail
with ENOPROTOOPT 'Protocol not available'; skip it.
There does not seem any other special setsockopt call is
needed anyway, besides the above.
In addition Jonny Törnbom commented:
SCM_CREDENTIALS is a control message type, not a socket option, so using
setsockopt(...SCM_CREDENTIALS...) is potentially dangerous and wrong and
should be deleted from the code. (SCM_CREDENTIALS is used in conjuction
with SO_PASSCRED which is the socket option to use.)
|
|\| |
|