openbsd-ports/net/libproxy/patches/patch-src_lib_url_c
landry 2df7d4e606 Import libproxy 0.2.3, a library that provides automatic proxy
configuration management. Currently provides GNOME and KDE plugins,
gecko and webkit plugins may be enabled at some point.
Joint work with and ok jasper@
2009-04-04 10:07:31 +00:00

25 lines
687 B
Plaintext

$OpenBSD: patch-src_lib_url_c,v 1.1.1.1 2009/04/04 10:07:31 landry Exp $
--- src/lib/url.c.orig Mon Feb 2 23:17:31 2009
+++ src/lib/url.c Tue Feb 3 10:33:11 2009
@@ -17,15 +17,17 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
******************************************************************************/
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <arpa/inet.h>
+#include <netinet/in.h>
#include <netdb.h>
+
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include <arpa/inet.h>
#include "misc.h"
#include "url.h"