From 3f7e25a51d5e5c23492f3ccb353f3f4040510a53 Mon Sep 17 00:00:00 2001 From: Steve Price Date: Mon, 26 Feb 2001 03:45:31 +0000 Subject: Since fputs doesn't return the number of bytes written, bump dboffset by strlen(s) instead. PR: 21705 Submitted by: Alexander Kabaev --- devel/cscope/files/patch-aa | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devel/cscope/files/patch-aa (limited to 'devel/cscope/files/patch-aa') diff --git a/devel/cscope/files/patch-aa b/devel/cscope/files/patch-aa new file mode 100644 index 000000000000..0a8d3170e1dd --- /dev/null +++ b/devel/cscope/files/patch-aa @@ -0,0 +1,11 @@ +--- src/constants.h.orig Sun Feb 25 14:40:57 2001 ++++ src/constants.h Sun Feb 25 14:41:08 2001 +@@ -43,7 +43,7 @@ + + /* database output macros that update its offset */ + #define dbputc(c) (++dboffset, (void) putc(c, newrefs)) +-#if Linux || BSD && !sun ++#if Linux || __FreeBSD__ || BSD && !sun + #define dbfputs(s) (dboffset += strlen(s), fputs(s, newrefs)) + #else + #define dbfputs(s) (dboffset += fputs(s, newrefs)) -- cgit v1.2.3