By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2432
Collapse All | Expand All

(-)a/plugins/upnp/upnpmcastsocket.cpp (-1 / +1 lines)
Lines 21-27 Link Here
21
#include <kurl.h>
21
#include <kurl.h>
22
extern "C" {
22
extern "C" {
23
	#include <unistd.h>
23
	#include <unistd.h>
24
	inline ssize_t mycread (int __fd, void *__buf, size_t __nbytes) { read(__fd, __buf, __nbytes); }
24
	inline ssize_t mycread (int __fd, void *__buf, size_t __nbytes) { return read(__fd, __buf, __nbytes); }
25
};
25
};
26
#include <sys/socket.h>
26
#include <sys/socket.h>
27
#include <netinet/in.h>
27
#include <netinet/in.h>

Return to bug 2432