summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--doc/status.html10
-rw-r--r--runtime/Makefile.am2
-rw-r--r--tools/omfwd.c2
4 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index cc599b52..1a7ac4b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,10 +2,14 @@
Version 3.19.3 (rgerhards), 2008-05-??
- added ability to authenticate the server against its certificate
fingerprint
-- bugfix: small mem leak in omfwd on exit (strmdriver name was not freed)
-- bugfix: $ActionSendStreamDriver had no effect
- added ability for client to provide its fingerprint
- added ability for server to obtain client cert's fingerprint
+- bugfix: small mem leak in omfwd on exit (strmdriver name was not freed)
+- bugfix: $ActionSendStreamDriver had no effect
+- bugfix: default syslog port was no longer used if none was
+ configured. Thanks to varmojfekoj for the patch
+- bugfix: missing linker options caused build to fail on some
+ systems. Thanks to Tiziano Mueller for the patch.
---------------------------------------------------------------------------
Version 3.19.2 (rgerhards), 2008-05-16
- bugfix: TCP input modules did incorrectly set fromhost property
diff --git a/doc/status.html b/doc/status.html
index 03322a07..9e261e78 100644
--- a/doc/status.html
+++ b/doc/status.html
@@ -5,19 +5,19 @@
<p>This page reflects the status as of 2008-05-16.</p>
<h2>Current Releases</h2>
-<p><b>development:</b> 3.19.2 -
+<p><b>development:</b> 3.19.2 [2008-05-16] -
<a href="http://www.rsyslog.com/Article228.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-105.phtml">download</a>
-<br><b>beta:</b> 3.17.2 -
+<br><b>beta:</b> 3.17.2 [2008-05-04] -
<a href="http://www.rsyslog.com/Article220.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-101.phtml">download</a></p>
-<p><b>v3 stable:</b> 3.16.1 - <a href="http://www.rsyslog.com/Article218.phtml">change log</a> -
+<p><b>v3 stable:</b> 3.16.1 [2008-05-02] - <a href="http://www.rsyslog.com/Article218.phtml">change log</a> -
<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-100.phtml">download</a>
-<br><b>v2 stable:</b> 2.0.5 - <a href="http://www.rsyslog.com/Article226.phtml">change log</a> -
-<a href="http://www.rsyslog.com/Downloads-index-req-getit-lid-104.phtml">download</a>
+<br><b>v2 stable:</b> 2.0.5 [2008-05-15] - <a href="http://www.rsyslog.com/Article226.phtml">change log</a> -
+<a href="http://www.rsyslog.com/Downloads-req-viewdownloaddetails-lid-104.phtml">download</a>
<br>v0 and v1 are deprecated and no longer supported. If you absolutely do not like to
upgrade, you may consider purchasing a
<a href="professional_support.html">commercial rsyslog support package</a>. Just let us point
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index a7a2b91e..4a72eed8 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -67,7 +67,7 @@ librsyslog_la_SOURCES = \
librsyslog_la_CPPFLAGS = -D_PATH_MODDIR=\"$(pkglibdir)/\" -I$(top_srcdir) $(pthreads_cflags)
#librsyslog_la_LDFLAGS = -module -avoid-version
-librsyslog_la_LIBADD =
+librsyslog_la_LIBADD = -ldl -lrt
#
# regular expression support
diff --git a/tools/omfwd.c b/tools/omfwd.c
index a902fe3b..aa3acfb1 100644
--- a/tools/omfwd.c
+++ b/tools/omfwd.c
@@ -303,7 +303,7 @@ static rsRetVal TCPSendInit(void *pvData)
}
/* params set, now connect */
CHKiRet(netstrm.Connect(pData->pNetstrm, glbl.GetDefPFFamily(),
- (uchar*)pData->port, (uchar*)pData->f_hname));
+ (uchar*)getFwdPt(pData), (uchar*)pData->f_hname));
}
finalize_it: