diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | openbsd-compat/vis.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20010209 | ||
2 | - (bal) patch to vis.c to deal with HAVE_VIS right by Robert Mooney | ||
3 | <rjmooney@mediaone.net> | ||
4 | |||
1 | 20010208 | 5 | 20010208 |
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 @@ | |||
35 | static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $"; | 35 | static 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 | /* |