summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/tar
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-10-09 15:22:35 +0000
committerache <ache@FreeBSD.org>1994-10-09 15:22:35 +0000
commitff00733418d03ce2b741282b4d4d5e975b7ef736 (patch)
tree20f5829396f44a25c792dbf2ee144da6bb741147 /gnu/usr.bin/tar
parent42017de88fd5ae3e7a428c53c14cbafd803c3259 (diff)
downloadFreeBSD-src-ff00733418d03ce2b741282b4d4d5e975b7ef736.zip
FreeBSD-src-ff00733418d03ce2b741282b4d4d5e975b7ef736.tar.gz
Back out part of ctype fixes, unneded with new ctype
Diffstat (limited to 'gnu/usr.bin/tar')
-rw-r--r--gnu/usr.bin/tar/gnu.c4
-rw-r--r--gnu/usr.bin/tar/list.c2
-rw-r--r--gnu/usr.bin/tar/port.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/tar/gnu.c b/gnu/usr.bin/tar/gnu.c
index 3bb1d68..ef51f2b 100644
--- a/gnu/usr.bin/tar/gnu.c
+++ b/gnu/usr.bin/tar/gnu.c
@@ -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)
diff --git a/gnu/usr.bin/tar/list.c b/gnu/usr.bin/tar/list.c
index 121f250..4158a45 100644
--- a/gnu/usr.bin/tar/list.c
+++ b/gnu/usr.bin/tar/list.c
@@ -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;
diff --git a/gnu/usr.bin/tar/port.c b/gnu/usr.bin/tar/port.c
index b55cf32..10ec32e 100644
--- a/gnu/usr.bin/tar/port.c
+++ b/gnu/usr.bin/tar/port.c
@@ -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)
OpenPOWER on IntegriCloud