aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1994-10-09 15:22:35 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1994-10-09 15:22:35 +0000
commita73699e1646b6ce58a70591e17a886c4982318a6 (patch)
tree20f5829396f44a25c792dbf2ee144da6bb741147 /gnu
parentbac719f59992c7aab2f98969a2056076d9c69e97 (diff)
Notes
Diffstat (limited to 'gnu')
-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 3bb1d68fc3c2..ef51f2b5fedd 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 121f250c953a..4158a45dac65 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 b55cf3228bb2..10ec32ed7288 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)