Commit 0404f4cb 0404f4cb463ae2fb2d83d4eabdf9b0e5a97f237c by Alain Magloire

* doc/pop3.texi: Update the doc.

	* doc/sfrom.c.texi: Line too long.
	* doc/stream.texi: Line too long.
1 parent debaba40
...@@ -53,7 +53,8 @@ main (int argc, const char **argv) ...@@ -53,7 +53,8 @@ main (int argc, const char **argv)
53 if ((status = mailbox_get_message (mbox, msgno, &msg)) != 0 53 if ((status = mailbox_get_message (mbox, msgno, &msg)) != 0
54 || (status = message_get_header (msg, &hdr)) != 0) 54 || (status = message_get_header (msg, &hdr)) != 0)
55 @{ 55 @{
56 fprintf (stderr, "Error message:%s\n", strerror (status)); 56 fprintf (stderr, "Error message:%s\n",
57 strerror (status));
57 exit (EXIT_FAILURE); 58 exit (EXIT_FAILURE);
58 @} 59 @}
59 60
......
...@@ -115,12 +115,14 @@ main(int argc, char **argv) ...@@ -115,12 +115,14 @@ main(int argc, char **argv)
115 ret = tcp_stream_create (&stream); 115 ret = tcp_stream_create (&stream);
116 if (ret != 0) 116 if (ret != 0)
117 @{ 117 @{
118 fprintf (stderr, "tcp_stream_create: %s\n", mailutils_error(ret)); 118 fprintf (stderr, "tcp_stream_create: %s\n",
119 mailutils_error(ret));
119 exit (EXIT_FAILURE); 120 exit (EXIT_FAILURE);
120 @} 121 @}
121 122
122 connect_again: 123 connect_again:
123 ret = stream_open (stream, "www.netscape.com", 80, MU_STREAM_NONBLOCK); 124 ret = stream_open (stream, "www.netscape.com", 80,
125 MU_STREAM_NONBLOCK);
124 if (ret != 0) 126 if (ret != 0)
125 @{ 127 @{
126 if (ret == MU_ERROR_EAGAIN) 128 if (ret == MU_ERROR_EAGAIN)
......