openbsd-ports/misc/gacc/patches/patch-src_gAcc_msg_c
sthen 1fdbef6952 - include string.h header where string functions are used;
without it, operations returning a pointer will truncate to
32 bits on 64-bit arch causing runtime errors.

- regen PLIST, bump
2008-11-19 23:29:13 +00:00

12 lines
330 B
Plaintext

$OpenBSD: patch-src_gAcc_msg_c,v 1.1 2008/11/19 23:29:13 sthen Exp $
--- src/gAcc_msg.c.orig Wed Nov 19 23:12:12 2008
+++ src/gAcc_msg.c Wed Nov 19 23:12:24 2008
@@ -23,6 +23,7 @@
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <gtk/gtk.h>
#include "defines.h"
#include "gAcc_msg.h"