summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-08 16:34:56 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-08 16:34:56 +0000
commitefe35aad529ea752a6301addb39b46eaf5be7af2 (patch)
tree283a15e73981dc634c83618d1e95557e9bfd0faf
parentb8b8ecf87d432b857bbf41a51454791cafc6e3d7 (diff)
- (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
<rjmooney@mediaone.net>
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/vis.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 02a43ec8b..182b3e83f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120010209
2 - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney
3 <rjmooney@mediaone.net>
4
120010208 520010208
2 - (djm) Don't delete external askpass program in make uninstall target. 6 - (djm) Don't delete external askpass program in make uninstall target.
3 Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com> 7 Report and fix from Roumen Petrov <roumen.petrov@skalasoft.com>
diff --git a/openbsd-compat/vis.c b/openbsd-compat/vis.c
index 94283a077..f49277eb3 100644
--- a/openbsd-compat/vis.c
+++ b/openbsd-compat/vis.c
@@ -35,10 +35,10 @@
35static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $"; 35static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $";
36#endif /* LIBC_SCCS and not lint */ 36#endif /* LIBC_SCCS and not lint */
37 37
38#ifndef HAVE_VIS
39
40#include "includes.h" 38#include "includes.h"
41 39
40#ifndef HAVE_VIS
41
42#define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') 42#define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
43 43
44/* 44/*