diff options
author | Jeremy Allison <jra@samba.org> | 2004-06-24 19:25:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:02 -0500 |
commit | 464d2e90480c676688a851a141aabddf992e0b0e (patch) | |
tree | dd6c811e4875a28d1a321bc21b5d42a4140afaf8 /source | |
parent | fece76cfc2f268d2855944d8a71d0aca3f99e0fb (diff) | |
download | samba-464d2e90480c676688a851a141aabddf992e0b0e.tar.gz samba-464d2e90480c676688a851a141aabddf992e0b0e.tar.xz samba-464d2e90480c676688a851a141aabddf992e0b0e.zip |
r1240: Ensure we don't shadow Heimdal globals.
Jeremy.
Diffstat (limited to 'source')
-rw-r--r-- | source/libsmb/asn1.c | 12 | ||||
-rw-r--r-- | source/libsmb/clispnego.c | 12 | ||||
-rw-r--r-- | source/utils/net_ads.c | 2 |
3 files changed, 13 insertions, 13 deletions
diff --git a/source/libsmb/asn1.c b/source/libsmb/asn1.c index ecc5e3dee64..ca14f3fbb71 100644 --- a/source/libsmb/asn1.c +++ b/source/libsmb/asn1.c @@ -320,17 +320,17 @@ int asn1_tag_remaining(ASN1_DATA *data) BOOL asn1_read_OID(ASN1_DATA *data, char **OID) { uint8 b; - pstring oid; + pstring oid_str; fstring el; if (!asn1_start_tag(data, ASN1_OID)) return False; asn1_read_uint8(data, &b); - oid[0] = 0; + oid_str[0] = 0; fstr_sprintf(el, "%u", b/40); - pstrcat(oid, el); + pstrcat(oid_str, el); fstr_sprintf(el, " %u", b%40); - pstrcat(oid, el); + pstrcat(oid_str, el); while (asn1_tag_remaining(data) > 0) { unsigned v = 0; @@ -339,12 +339,12 @@ BOOL asn1_read_OID(ASN1_DATA *data, char **OID) v = (v<<7) | (b&0x7f); } while (!data->has_error && b & 0x80); fstr_sprintf(el, " %u", v); - pstrcat(oid, el); + pstrcat(oid_str, el); } asn1_end_tag(data); - *OID = strdup(oid); + *OID = strdup(oid_str); return !data->has_error; } diff --git a/source/libsmb/clispnego.c b/source/libsmb/clispnego.c index e6cadc466c1..85b7bd9e1ee 100644 --- a/source/libsmb/clispnego.c +++ b/source/libsmb/clispnego.c @@ -141,9 +141,9 @@ BOOL spnego_parse_negTokenInit(DATA_BLOB blob, asn1_start_tag(&data,ASN1_CONTEXT(0)); asn1_start_tag(&data,ASN1_SEQUENCE(0)); for (i=0; asn1_tag_remaining(&data) > 0 && i < ASN1_MAX_OIDS; i++) { - char *oid = NULL; - asn1_read_OID(&data,&oid); - OIDs[i] = oid; + char *oid_str = NULL; + asn1_read_OID(&data,&oid_str); + OIDs[i] = oid_str; } OIDs[i] = NULL; asn1_end_tag(&data); @@ -230,9 +230,9 @@ BOOL parse_negTokenTarg(DATA_BLOB blob, char *OIDs[ASN1_MAX_OIDS], DATA_BLOB *se asn1_start_tag(&data, ASN1_CONTEXT(0)); asn1_start_tag(&data, ASN1_SEQUENCE(0)); for (i=0; asn1_tag_remaining(&data) > 0 && i < ASN1_MAX_OIDS; i++) { - char *oid = NULL; - asn1_read_OID(&data,&oid); - OIDs[i] = oid; + char *oid_str = NULL; + asn1_read_OID(&data,&oid_str); + OIDs[i] = oid_str; } OIDs[i] = NULL; asn1_end_tag(&data); diff --git a/source/utils/net_ads.c b/source/utils/net_ads.c index b5706e919ab..b25303a97e0 100644 --- a/source/utils/net_ads.c +++ b/source/utils/net_ads.c @@ -1456,7 +1456,7 @@ int net_ads(int argc, const char **argv) #else -static int net_ads_noads(int argc, const char **argv) +static int net_ads_noads(void) { d_printf("ADS support not compiled in\n"); return -1; |