Commit 1c161cd1 1c161cd11cc0d8bbdfba7087cd0e90ce2220e390 by Wojciech Polak

Updated

1 parent be53eb39
1 2004-08-31 Wojciech Polak
2
3 * mailbox/file_stream.c (prog_stream_create): Changed type
4 of the second argument to const char*.
5 (filter_prog_stream_create): Likewise.
6 (_prog_stream_create): Changed type of the third argument
7 to const char*.
8 * include/mailutils/stream.h (prog_stream_create): Changed
9 type of the second argument to const char*.
10 (filter_prog_stream_create): Likewise.
11 * doc/texinfo/stream.texi: Updated.
12
13 * configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.14.1.
14
1 2004-08-24 Sergey Poznyakoff 15 2004-08-24 Sergey Poznyakoff
2 16
3 * mail/util.c (util_do_command): Fixed coredump on unparseable 17 * mail/util.c (util_do_command): Fixed coredump on unparseable
......
...@@ -6,6 +6,9 @@ mailutils.info* ...@@ -6,6 +6,9 @@ mailutils.info*
6 muint.info* 6 muint.info*
7 texinfo.tex 7 texinfo.tex
8 version.texi 8 version.texi
9 index.html
10 stamp-1
11 vers-muint.texi
9 mailutils.log 12 mailutils.log
10 mailutils.dvi 13 mailutils.dvi
11 mailutils.aux 14 mailutils.aux
......
...@@ -67,10 +67,10 @@ If @code{MU_STREAM_NO_CLOSE} is specified, @code{fclose()} will not be called on ...@@ -67,10 +67,10 @@ If @code{MU_STREAM_NO_CLOSE} is specified, @code{fclose()} will not be called on
67 @var{stdio} when the stream is closed. 67 @var{stdio} when the stream is closed.
68 @end deftypefun 68 @end deftypefun
69 69
70 @deftypefun int prog_stream_create (stream_t *@var{stream}, char *@var{progname}, int @var{flags}) 70 @deftypefun int prog_stream_create (stream_t *@var{stream}, const char *@var{progname}, int @var{flags})
71 @end deftypefun 71 @end deftypefun
72 72
73 @deftypefun int filter_prog_stream_create (stream_t *@var{stream}, char *@var{progname}, stream_t @var{input}) 73 @deftypefun int filter_prog_stream_create (stream_t *@var{stream}, const char *@var{progname}, stream_t @var{input})
74 @end deftypefun 74 @end deftypefun
75 75
76 @deftypefun void stream_destroy (stream_t *@var{stream}, void *@var{owner}) 76 @deftypefun void stream_destroy (stream_t *@var{stream}, void *@var{owner})
......
...@@ -17,4 +17,5 @@ listop ...@@ -17,4 +17,5 @@ listop
17 pop3client 17 pop3client
18 nntpclient 18 nntpclient
19 murun 19 murun
20 iconv
20 *.l[oa] 21 *.l[oa]
......