* getc() returns int

* md5 -> distinfo while we're here
This commit is contained in:
naddy 2002-02-20 19:31:43 +00:00
parent 0d2558d498
commit f6e1080a7f
3 changed files with 16 additions and 2 deletions

View File

@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.5 2001/10/25 16:14:51 naddy Exp $
# $OpenBSD: Makefile,v 1.6 2002/02/20 19:31:43 naddy Exp $
COMMENT= "clone of the ex/vi text editor"
DISTNAME= elvis-2.1_4
PKGNAME= ${DISTNAME:S/_/./}
CATEGORIES= editors
NEED_VERSION= 1.363
NEED_VERSION= 1.504
HOMEPAGE= http://www.fh-wedel.de/elvis/
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-ctags_c,v 1.1 2002/02/20 19:31:43 naddy Exp $
--- ctags.c.orig Wed Feb 20 20:20:35 2002
+++ ctags.c Wed Feb 20 20:20:58 2002
@@ -220,8 +220,8 @@ int file_copyline(seek, fp, buf)
char *buf; /* line buffer, or NULL to write to fp */
{
long oldseek;/* where the file's pointer was before we messed it up */
- char ch; /* a single character from the file */
- char next; /* the next character from this file */
+ int ch; /* a single character from the file */
+ int next; /* the next character from this file */
char *build; /* where to store the next character */
/* go to the start of the line */