search for: isoctal

Displaying 3 results from an estimated 3 matches for "isoctal".

Did you mean: ipoctal
2001 Feb 08
1
openbsd-compat/vis.c fails to build (patch)
...01 +++ openbsd-compat/vis.c Thu Feb 8 09:21:26 2001 @@ -35,9 +35,9 @@ static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef HAVE_VIS - #include "includes.h" + +#ifndef HAVE_VIS #define isoctal(c)
2001 Feb 16
1
OpenSSH 2.3.0p1 port to BSDI BSD/OS
...is.c 2001/02/13 07:43:16 1.1 +++ bsd-vis.c 2001/02/13 07:45:46 1.2 @@ -35,9 +35,9 @@ static char rcsid[] = "$OpenBSD: vis.c,v 1.5 2000/07/19 15:25:13 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef HAVE_VIS - #include "includes.h" + +#ifndef HAVE_VIS #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') Index: session.c --- session.c 2001/02/13 07:43:17 1.1 +++ session.c 2001/02/13 07:45:46 1.2 @@ -1155,7 +1155,9 @@ child_set_env(&env, &envsize, "HOME", pw->pw_dir); #ifdef HAVE_LOGIN_CAP (...
2003 Oct 08
4
OS/390 openssh
...compat/vis.c Fri Aug 29 18:59:52 2003 +++ openssh-3.7.1p2/openbsd-compat/vis.c Tue Oct 7 08:22:01 2003 @@ -38,6 +38,10 @@ #include "vis.h" +#if 'Z' == '\xE9' /* This test is true for all EBCDIC character dialects */ +#include "includes.h" +#endif + #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') #define isvisible(c) (((u_int)(c) <= UCHAR_MAX && isascii((u_char)(c)) && \ isgraph((u_char)(c))) || \ @@ -109,7 +113,7 @@ goto done; } } - if (((c & 0177) == ' ') ||...