mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 15:44:04 +01:00
Back out part of ctype fixes, unneded with new ctype
This commit is contained in:
parent
bac719f599
commit
a73699e164
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3458
@ -95,9 +95,9 @@ read_dir_file ()
|
||||
{
|
||||
int dev;
|
||||
int ino;
|
||||
unsigned char *strp;
|
||||
char *strp;
|
||||
FILE *fp;
|
||||
unsigned char buf[512];
|
||||
char buf[512];
|
||||
static char *path = 0;
|
||||
|
||||
if (path == 0)
|
||||
|
@ -504,7 +504,7 @@ decode_header (header, st, stdp, wantug)
|
||||
long
|
||||
from_oct (digs, where)
|
||||
register int digs;
|
||||
register unsigned char *where;
|
||||
register char *where;
|
||||
{
|
||||
register long value;
|
||||
|
||||
|
@ -837,7 +837,7 @@ quote_copy_string (string)
|
||||
from_here = string;
|
||||
while (*from_here)
|
||||
{
|
||||
c = *from_here++ & 0xff;
|
||||
c = *from_here++;
|
||||
if (c == '\\')
|
||||
{
|
||||
if (!copying)
|
||||
|
Loading…
Reference in New Issue
Block a user