Clean up more local vars which shadow globals

-Erik
This commit is contained in:
Eric Andersen 2001-03-21 21:52:25 +00:00
parent 1ca20a7747
commit 851895ab80
6 changed files with 24 additions and 24 deletions

View File

@ -370,7 +370,7 @@ unsigned n; /* number of bytes in s[] */
register ulg c; /* temporary variable */
static unsigned long crc_32_tab[256];
if (crc_table_empty) {
unsigned long c; /* crc shift register */
unsigned long csr; /* crc shift register */
unsigned long e; /* polynomial exclusive-or pattern */
int i; /* counter for all possible eight bit values */
int k; /* byte being shifted into crc apparatus */
@ -386,13 +386,13 @@ unsigned n; /* number of bytes in s[] */
/* Compute and print table of CRC's, five per line */
crc_32_tab[0] = 0x00000000L;
for (i = 1; i < 256; i++) {
c = i;
csr = i;
/* The idea to initialize the register with the byte instead of
* zero was stolen from Haruhiko Okumura's ar002
*/
for (k = 8; k; k--)
c = c & 1 ? (c >> 1) ^ e : c >> 1;
crc_32_tab[i]=c;
csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
crc_32_tab[i]=csr;
}
}

View File

@ -294,7 +294,7 @@ void lm_init (ush * flags);
ulg deflate (void);
/* in trees.c */
void ct_init (ush * attr, int *method);
void ct_init (ush * attr, int *methodp);
int ct_tally (int dist, int lc);
ulg flush_block (char *buf, ulg stored_len, int eof);
@ -3299,7 +3299,7 @@ long header_bytes; /* number of bytes in gzip header */
int zip(in, out)
int in, out; /* input and output file descriptors */
{
uch flags = 0; /* general purpose bit flags */
uch my_flags = 0; /* general purpose bit flags */
ush attr = 0; /* ascii/binary flag */
ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
@ -3315,7 +3315,7 @@ int in, out; /* input and output file descriptors */
put_byte(GZIP_MAGIC[1]);
put_byte(DEFLATED); /* compression method */
put_byte(flags); /* general flags */
put_byte(my_flags); /* general flags */
put_long(time_stamp);
/* Write deflated file to zip file */

View File

@ -370,7 +370,7 @@ unsigned n; /* number of bytes in s[] */
register ulg c; /* temporary variable */
static unsigned long crc_32_tab[256];
if (crc_table_empty) {
unsigned long c; /* crc shift register */
unsigned long csr; /* crc shift register */
unsigned long e; /* polynomial exclusive-or pattern */
int i; /* counter for all possible eight bit values */
int k; /* byte being shifted into crc apparatus */
@ -386,13 +386,13 @@ unsigned n; /* number of bytes in s[] */
/* Compute and print table of CRC's, five per line */
crc_32_tab[0] = 0x00000000L;
for (i = 1; i < 256; i++) {
c = i;
csr = i;
/* The idea to initialize the register with the byte instead of
* zero was stolen from Haruhiko Okumura's ar002
*/
for (k = 8; k; k--)
c = c & 1 ? (c >> 1) ^ e : c >> 1;
crc_32_tab[i]=c;
csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
crc_32_tab[i]=csr;
}
}

6
gzip.c
View File

@ -294,7 +294,7 @@ void lm_init (ush * flags);
ulg deflate (void);
/* in trees.c */
void ct_init (ush * attr, int *method);
void ct_init (ush * attr, int *methodp);
int ct_tally (int dist, int lc);
ulg flush_block (char *buf, ulg stored_len, int eof);
@ -3299,7 +3299,7 @@ long header_bytes; /* number of bytes in gzip header */
int zip(in, out)
int in, out; /* input and output file descriptors */
{
uch flags = 0; /* general purpose bit flags */
uch my_flags = 0; /* general purpose bit flags */
ush attr = 0; /* ascii/binary flag */
ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
@ -3315,7 +3315,7 @@ int in, out; /* input and output file descriptors */
put_byte(GZIP_MAGIC[1]);
put_byte(DEFLATED); /* compression method */
put_byte(flags); /* general flags */
put_byte(my_flags); /* general flags */
put_long(time_stamp);
/* Write deflated file to zip file */

View File

@ -735,20 +735,20 @@ int nfsmount(const char *spec, const char *node, int *flags,
#endif
} else {
#if NFS_MOUNT_VERSION >= 4
fhandle3 *fhandle;
fhandle3 *my_fhandle;
if (status.nfsv3.fhs_status != 0) {
error_msg("%s:%s failed, reason given by server: %s",
hostname, dirname,
nfs_strerror(status.nfsv3.fhs_status));
goto fail;
}
fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
memset(data.old_root.data, 0, NFS_FHSIZE);
memset(&data.root, 0, sizeof(data.root));
data.root.size = fhandle->fhandle3_len;
data.root.size = my_fhandle->fhandle3_len;
memcpy(data.root.data,
(char *) fhandle->fhandle3_val,
fhandle->fhandle3_len);
(char *) my_fhandle->fhandle3_val,
my_fhandle->fhandle3_len);
data.flags |= NFS_MOUNT_VER3;
#endif

View File

@ -735,20 +735,20 @@ int nfsmount(const char *spec, const char *node, int *flags,
#endif
} else {
#if NFS_MOUNT_VERSION >= 4
fhandle3 *fhandle;
fhandle3 *my_fhandle;
if (status.nfsv3.fhs_status != 0) {
error_msg("%s:%s failed, reason given by server: %s",
hostname, dirname,
nfs_strerror(status.nfsv3.fhs_status));
goto fail;
}
fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
my_fhandle = &status.nfsv3.mountres3_u.mountinfo.fhandle;
memset(data.old_root.data, 0, NFS_FHSIZE);
memset(&data.root, 0, sizeof(data.root));
data.root.size = fhandle->fhandle3_len;
data.root.size = my_fhandle->fhandle3_len;
memcpy(data.root.data,
(char *) fhandle->fhandle3_val,
fhandle->fhandle3_len);
(char *) my_fhandle->fhandle3_val,
my_fhandle->fhandle3_len);
data.flags |= NFS_MOUNT_VER3;
#endif