Fix an instance of getline which I missed when I preemptively fixed it earlier

This commit is contained in:
sthen 2012-03-16 22:05:13 +00:00
parent 3b1137aabe
commit 0c389a8d92
2 changed files with 15 additions and 3 deletions

View File

@ -1,17 +1,17 @@
# $OpenBSD: Makefile,v 1.14 2012/03/02 08:01:06 sthen Exp $
# $OpenBSD: Makefile,v 1.15 2012/03/16 22:05:13 sthen Exp $
COMMENT= update LDAP entries with a text editor
DISTNAME= ldapvi-1.7
CATEGORIES= editors
REVISION= 3
REVISION= 4
HOMEPAGE= http://www.lichteblau.com/ldapvi.html
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
# GPLv2
# GPLv2+
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-common_h,v 1.1 2012/03/16 22:05:13 sthen Exp $
--- common.h.orig Fri Mar 16 22:02:48 2012
+++ common.h Fri Mar 16 22:02:54 2012
@@ -273,7 +273,7 @@ void pipeview_wait(int pid);
char *home_filename(char *name);
void read_ldapvi_history(void);
void write_ldapvi_history(void);
-char *getline(char *prompt, char *value);
+char *ldapvi_getline(char *prompt, char *value);
char *get_password();
char *append(char *a, char *b);
void *xalloc(size_t size);