Version: 4.4 (using KDE 4.4.4) OS: Linux with kio_man the manpage of send(2) will show some errors the description of send should look like this:ssize_t send(int sockfd, const void *buf, size_t len, int flags); but it looks like this: ssize_t send(int sockfd, const void *buf, size_t lenflags); so the last argument type is missing and the arguments names are put together. Reproducible: Always Steps to Reproduce: konqueror: man:send Actual Results: ... ssize_t send(int sockfd, const void *buf, size_t lenflags); ... Expected Results: ... ssize_t send(int sockfd, const void *buf, size_t len, int flags); ... here is the html-source: <span style="font-weight:bold">ssize_t send(int </span><span style="font-style:italic">sockfd</span><span style="font-weight:bold">, const void *</span><span style="font-style:italic">buf</span><span style="font-weight:bold">, size_t </span><span style="font-style:italic">len</span><span style="font-weight:bold"></span><span style="font-style:italic">flags</span><span style="font-weight:bold">);</span> 'man send' on the shell does fine.
[Comment from a bug triager] This is a really old bug: bug 144942. Merging. Thanks *** This bug has been marked as a duplicate of bug 144942 ***