openbsd-ports/misc/ccze/patches/patch-src_ccze-compat_c
sturm d284645d40 - fix malloc()/realloc() detection on sparc64
- don't use plugins, mechanism for loading is busted on OpenBSD
- fix a typo resulting in a core dump if using "-p plugin"
- bump PKGNAME

plugin removal from maintainer thuglife@bsd.hu (Robert Nagy)
2003-07-16 09:40:29 +00:00

13 lines
414 B
Plaintext

$OpenBSD: patch-src_ccze-compat_c,v 1.1 2003/07/16 09:40:29 sturm Exp $
--- src/ccze-compat.c.orig Wed Jul 16 11:18:56 2003
+++ src/ccze-compat.c Wed Jul 16 11:19:07 2003
@@ -275,7 +275,7 @@ ccze_getsubopt (char **optionp, char *co
char **valuep)
{
int i = getsubopt (optionp, tokens, valuep);
-#if HAVE_SUBOPTARg
+#if HAVE_SUBOPTARG
if (!*valuep && suboptarg)
*valuep = strdup (suboptarg);
#endif