Clean up more local vars which shadow globals
-Erik
This commit is contained in:
parent
1ca20a7747
commit
851895ab80
@ -370,7 +370,7 @@ unsigned n; /* number of bytes in s[] */
|
|||||||
register ulg c; /* temporary variable */
|
register ulg c; /* temporary variable */
|
||||||
static unsigned long crc_32_tab[256];
|
static unsigned long crc_32_tab[256];
|
||||||
if (crc_table_empty) {
|
if (crc_table_empty) {
|
||||||
unsigned long c; /* crc shift register */
|
unsigned long csr; /* crc shift register */
|
||||||
unsigned long e; /* polynomial exclusive-or pattern */
|
unsigned long e; /* polynomial exclusive-or pattern */
|
||||||
int i; /* counter for all possible eight bit values */
|
int i; /* counter for all possible eight bit values */
|
||||||
int k; /* byte being shifted into crc apparatus */
|
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 */
|
/* Compute and print table of CRC's, five per line */
|
||||||
crc_32_tab[0] = 0x00000000L;
|
crc_32_tab[0] = 0x00000000L;
|
||||||
for (i = 1; i < 256; i++) {
|
for (i = 1; i < 256; i++) {
|
||||||
c = i;
|
csr = i;
|
||||||
/* The idea to initialize the register with the byte instead of
|
/* The idea to initialize the register with the byte instead of
|
||||||
* zero was stolen from Haruhiko Okumura's ar002
|
* zero was stolen from Haruhiko Okumura's ar002
|
||||||
*/
|
*/
|
||||||
for (k = 8; k; k--)
|
for (k = 8; k; k--)
|
||||||
c = c & 1 ? (c >> 1) ^ e : c >> 1;
|
csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
|
||||||
crc_32_tab[i]=c;
|
crc_32_tab[i]=csr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -294,7 +294,7 @@ void lm_init (ush * flags);
|
|||||||
ulg deflate (void);
|
ulg deflate (void);
|
||||||
|
|
||||||
/* in trees.c */
|
/* in trees.c */
|
||||||
void ct_init (ush * attr, int *method);
|
void ct_init (ush * attr, int *methodp);
|
||||||
int ct_tally (int dist, int lc);
|
int ct_tally (int dist, int lc);
|
||||||
ulg flush_block (char *buf, ulg stored_len, int eof);
|
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 zip(in, out)
|
||||||
int in, out; /* input and output file descriptors */
|
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 attr = 0; /* ascii/binary flag */
|
||||||
ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
|
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(GZIP_MAGIC[1]);
|
||||||
put_byte(DEFLATED); /* compression method */
|
put_byte(DEFLATED); /* compression method */
|
||||||
|
|
||||||
put_byte(flags); /* general flags */
|
put_byte(my_flags); /* general flags */
|
||||||
put_long(time_stamp);
|
put_long(time_stamp);
|
||||||
|
|
||||||
/* Write deflated file to zip file */
|
/* Write deflated file to zip file */
|
||||||
|
8
gunzip.c
8
gunzip.c
@ -370,7 +370,7 @@ unsigned n; /* number of bytes in s[] */
|
|||||||
register ulg c; /* temporary variable */
|
register ulg c; /* temporary variable */
|
||||||
static unsigned long crc_32_tab[256];
|
static unsigned long crc_32_tab[256];
|
||||||
if (crc_table_empty) {
|
if (crc_table_empty) {
|
||||||
unsigned long c; /* crc shift register */
|
unsigned long csr; /* crc shift register */
|
||||||
unsigned long e; /* polynomial exclusive-or pattern */
|
unsigned long e; /* polynomial exclusive-or pattern */
|
||||||
int i; /* counter for all possible eight bit values */
|
int i; /* counter for all possible eight bit values */
|
||||||
int k; /* byte being shifted into crc apparatus */
|
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 */
|
/* Compute and print table of CRC's, five per line */
|
||||||
crc_32_tab[0] = 0x00000000L;
|
crc_32_tab[0] = 0x00000000L;
|
||||||
for (i = 1; i < 256; i++) {
|
for (i = 1; i < 256; i++) {
|
||||||
c = i;
|
csr = i;
|
||||||
/* The idea to initialize the register with the byte instead of
|
/* The idea to initialize the register with the byte instead of
|
||||||
* zero was stolen from Haruhiko Okumura's ar002
|
* zero was stolen from Haruhiko Okumura's ar002
|
||||||
*/
|
*/
|
||||||
for (k = 8; k; k--)
|
for (k = 8; k; k--)
|
||||||
c = c & 1 ? (c >> 1) ^ e : c >> 1;
|
csr = csr & 1 ? (csr >> 1) ^ e : csr >> 1;
|
||||||
crc_32_tab[i]=c;
|
crc_32_tab[i]=csr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
6
gzip.c
6
gzip.c
@ -294,7 +294,7 @@ void lm_init (ush * flags);
|
|||||||
ulg deflate (void);
|
ulg deflate (void);
|
||||||
|
|
||||||
/* in trees.c */
|
/* in trees.c */
|
||||||
void ct_init (ush * attr, int *method);
|
void ct_init (ush * attr, int *methodp);
|
||||||
int ct_tally (int dist, int lc);
|
int ct_tally (int dist, int lc);
|
||||||
ulg flush_block (char *buf, ulg stored_len, int eof);
|
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 zip(in, out)
|
||||||
int in, out; /* input and output file descriptors */
|
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 attr = 0; /* ascii/binary flag */
|
||||||
ush deflate_flags = 0; /* pkzip -es, -en or -ex equivalent */
|
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(GZIP_MAGIC[1]);
|
||||||
put_byte(DEFLATED); /* compression method */
|
put_byte(DEFLATED); /* compression method */
|
||||||
|
|
||||||
put_byte(flags); /* general flags */
|
put_byte(my_flags); /* general flags */
|
||||||
put_long(time_stamp);
|
put_long(time_stamp);
|
||||||
|
|
||||||
/* Write deflated file to zip file */
|
/* Write deflated file to zip file */
|
||||||
|
10
nfsmount.c
10
nfsmount.c
@ -735,20 +735,20 @@ int nfsmount(const char *spec, const char *node, int *flags,
|
|||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
#if NFS_MOUNT_VERSION >= 4
|
#if NFS_MOUNT_VERSION >= 4
|
||||||
fhandle3 *fhandle;
|
fhandle3 *my_fhandle;
|
||||||
if (status.nfsv3.fhs_status != 0) {
|
if (status.nfsv3.fhs_status != 0) {
|
||||||
error_msg("%s:%s failed, reason given by server: %s",
|
error_msg("%s:%s failed, reason given by server: %s",
|
||||||
hostname, dirname,
|
hostname, dirname,
|
||||||
nfs_strerror(status.nfsv3.fhs_status));
|
nfs_strerror(status.nfsv3.fhs_status));
|
||||||
goto fail;
|
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.old_root.data, 0, NFS_FHSIZE);
|
||||||
memset(&data.root, 0, sizeof(data.root));
|
memset(&data.root, 0, sizeof(data.root));
|
||||||
data.root.size = fhandle->fhandle3_len;
|
data.root.size = my_fhandle->fhandle3_len;
|
||||||
memcpy(data.root.data,
|
memcpy(data.root.data,
|
||||||
(char *) fhandle->fhandle3_val,
|
(char *) my_fhandle->fhandle3_val,
|
||||||
fhandle->fhandle3_len);
|
my_fhandle->fhandle3_len);
|
||||||
|
|
||||||
data.flags |= NFS_MOUNT_VER3;
|
data.flags |= NFS_MOUNT_VER3;
|
||||||
#endif
|
#endif
|
||||||
|
@ -735,20 +735,20 @@ int nfsmount(const char *spec, const char *node, int *flags,
|
|||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
#if NFS_MOUNT_VERSION >= 4
|
#if NFS_MOUNT_VERSION >= 4
|
||||||
fhandle3 *fhandle;
|
fhandle3 *my_fhandle;
|
||||||
if (status.nfsv3.fhs_status != 0) {
|
if (status.nfsv3.fhs_status != 0) {
|
||||||
error_msg("%s:%s failed, reason given by server: %s",
|
error_msg("%s:%s failed, reason given by server: %s",
|
||||||
hostname, dirname,
|
hostname, dirname,
|
||||||
nfs_strerror(status.nfsv3.fhs_status));
|
nfs_strerror(status.nfsv3.fhs_status));
|
||||||
goto fail;
|
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.old_root.data, 0, NFS_FHSIZE);
|
||||||
memset(&data.root, 0, sizeof(data.root));
|
memset(&data.root, 0, sizeof(data.root));
|
||||||
data.root.size = fhandle->fhandle3_len;
|
data.root.size = my_fhandle->fhandle3_len;
|
||||||
memcpy(data.root.data,
|
memcpy(data.root.data,
|
||||||
(char *) fhandle->fhandle3_val,
|
(char *) my_fhandle->fhandle3_val,
|
||||||
fhandle->fhandle3_len);
|
my_fhandle->fhandle3_len);
|
||||||
|
|
||||||
data.flags |= NFS_MOUNT_VER3;
|
data.flags |= NFS_MOUNT_VER3;
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user