Hi,
 
While compiling the 5.2.2.pre1 source, I have run into a compilation error in snmp_client.c line 37. The compiler complains that the term "long long" is illeagal, and actually by VC documentation 64 bits integers should be declared as __int64.
 
So instead of
            else if (vars->val_len == sizeof(long long)){
                const unsigned long long   *val_ullong
                    = (const unsigned long long *) value;
there should be
            else if (vars->val_len == sizeof(__int64)){
                const unsigned __int64   *val_ullong
                    = (const unsigned __int64 *) value;
 
Mark.
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.4/109 - Release Date: 21.09.2005

Reply via email to