openbsd-ports/www/dillo/patches/patch-dpid_main_c

22 lines
961 B
Plaintext
Raw Normal View History

$OpenBSD: patch-dpid_main_c,v 1.3 2008/10/19 08:42:55 ajacoutot Exp $
--- dpid/main.c.orig Tue Sep 30 16:27:32 2008
+++ dpid/main.c Sat Oct 18 11:14:19 2008
@@ -69,7 +69,7 @@ static int start_filter_plugin(struct dp dpi_attr)
2004-02-20 20:37:19 -05:00
}
if (pid == 0) {
2004-02-20 20:37:19 -05:00
/* Child, start plugin */
- if (execl(dpi_attr.path, dpi_attr.path, NULL) == -1) {
+ if (execl(dpi_attr.path, dpi_attr.path, (void *)NULL) == -1) {
ERRMSG("start_plugin", "execl", errno);
MSG_ERR("ERROR in child proc for %s\n", dpi_attr.path);
2004-02-20 20:37:19 -05:00
exit(1);
@@ -101,7 +101,7 @@ static void start_server_plugin(struct dp dpi_attr)
MSG_ERR("ERROR in child proc for %s\n", dpi_attr.path);
2004-02-20 20:37:19 -05:00
exit(1);
}
- if (execl(dpi_attr.path, dpi_attr.path, NULL) == -1) {
+ if (execl(dpi_attr.path, dpi_attr.path, (void *)NULL) == -1) {
ERRMSG("start_plugin", "execl", errno);
MSG_ERR("ERROR in child proc for %s\n", dpi_attr.path);
2004-02-20 20:37:19 -05:00
exit(1);