provide some infrastructure for signed ints

This commit is contained in:
leitner
2002-03-14 17:26:06 +00:00
parent 750d4fd7ba
commit 2848136fc9
12 changed files with 92 additions and 29 deletions

View File

@@ -10,8 +10,7 @@ int scan_ldapbindrequest(const char* src,const char* max,
{
enum asn1_tagclass tc;
enum asn1_tagtype tt;
long method;
if (!(tmp=scan_asn1tag(src+res,max,&tc,&tt,&method))) return 0;
if (!(tmp=scan_asn1tag(src+res,max,&tc,&tt,method))) return 0;
if (tc!=PRIVATE || tt!=PRIMITIVE) return 0;
}
return res;