diff options
author | Andreas Jaeger <aj@suse.de> | 2012-04-08 15:00:50 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2012-04-08 15:01:46 +0200 |
commit | 54472e9c32ab18df49e279c64be9a2debfc0fec1 (patch) | |
tree | c27637c23eb409a22c8f519648c170876afe79da | |
parent | 96bd03c79a7ea9bdf6130e4a641d3144cbefabac (diff) | |
download | glibc-54472e9c32ab18df49e279c64be9a2debfc0fec1.zip glibc-54472e9c32ab18df49e279c64be9a2debfc0fec1.tar.gz glibc-54472e9c32ab18df49e279c64be9a2debfc0fec1.tar.bz2 |
Fix closelog description
[BZ #6578]
The manual mentioned a non-existing function initlog, replace it with
openlog.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | NEWS | 18 | ||||
-rw-r--r-- | manual/syslog.texi | 2 |
3 files changed, 15 insertions, 10 deletions
@@ -1,3 +1,8 @@ +2012-04-08 Andreas Jaeger <aj@suse.de> + + [BZ #6578] + * manual/syslog.texi (closelog): Fix reference, it's openlog. + 2012-04-08 Stephen Compall <s11@member.fsf.org> [BZ #6649] @@ -11,15 +11,15 @@ Version 2.16 174, 350, 369, 411, 2541, 2547, 2548, 2551, 2552, 2553, 2554, 2562, 2563, 2565, 2566, 2576, 2678, 3335, 3866, 3868, 3976, 3992, 4026, 4108, 4596, - 4822, 5077, 5461, 5805, 5993, 6471, 6486, 6649, 6730, 6770, 6884, 6907, - 6911, 9739, 9902, 10110, 10135, 10140, 10210, 10346, 10545, 10716, 11174, - 11322, 11365, 11451, 11494, 12047, 12340, 13058, 13525, 13526, 13527, - 13528, 13529, 13530, 13531, 13532, 13533, 13547, 13551, 13552, 13553, - 13555, 13559, 13566, 13583, 13592, 13618, 13637, 13656, 13658, 13673, - 13691, 13695, 13704, 13706, 13726, 13738, 13760, 13761, 13786, 13792, - 13806, 13824, 13840, 13841, 13844, 13846, 13851, 13852, 13854, 13871, - 13879, 13883, 13892, 13895, 13908, 13910, 13911, 13912, 13913, 13915, - 13916, 13917, 13918, 13919, 13920, 13921, 13926, 13928, 13938 + 4822, 5077, 5461, 5805, 5993, 6471, 6486, 6578, 6649, 6730, 6770, 6884, + 6907, 6911, 9739, 9902, 10110, 10135, 10140, 10210, 10346, 10545, 10716, + 11174, 11322, 11365, 11451, 11494, 12047, 12340, 13058, 13525, 13526, + 13527, 13528, 13529, 13530, 13531, 13532, 13533, 13547, 13551, 13552, + 13553, 13555, 13559, 13566, 13583, 13592, 13618, 13637, 13656, 13658, + 13673, 13691, 13695, 13704, 13706, 13726, 13738, 13760, 13761, 13786, + 13792, 13806, 13824, 13840, 13841, 13844, 13846, 13851, 13852, 13854, + 13871, 13879, 13883, 13892, 13895, 13908, 13910, 13911, 13912, 13913, + 13915, 13916, 13917, 13918, 13919, 13920, 13921, 13926, 13928, 13938 * ISO C11 support: diff --git a/manual/syslog.texi b/manual/syslog.texi index 6d338ec..b978e55 100644 --- a/manual/syslog.texi +++ b/manual/syslog.texi @@ -435,7 +435,7 @@ done. Please read the section on @code{openlog} for more information: @xref{openlog}. @code{closelog} does not flush any buffers. You do not have to call -@code{closelog} before re-opening a Syslog connection with @code{initlog}. +@code{closelog} before re-opening a Syslog connection with @code{openlog}. Syslog connections are automatically closed on exec or exit. @end deftypefun |