Re: snmp_open() problem in 5.2.rc1

2004-10-29 Thread Users
On Fri, 29 Oct 2004 12:48:00 -0400 [EMAIL PROTECTED] wrote: CRC> I removed all traces of *snmp* from /usr/lib, rebuilt and reinstalled my CRC> client and found the same results. I pass a valid session->community into CRC> snmp_open() and it's null at the first executable line of snmp_open(). CRC>

Re: snmp_open() problem in 5.2.rc1

2004-10-29 Thread cnelson
> > > This smells of library conflicts to me. Make sure you don't > have a mix > of > > > snmp libraries installed in /usr/lib/*snmp* and/or > /usr/local/lib/*snmp*. Also, > > > try building with static libraries (configure --enable-static > > > --disable-shared). > > > That's a good clue. Tha

Re: snmp_open() problem in 5.2.rc1

2004-10-29 Thread Carlos Cantu
> > This smells of library conflicts to me. Make sure you don't have a mix of > > snmp libraries installed in /usr/lib/*snmp* and/or /usr/local/lib/*snmp*. Also, > > try building with static libraries (configure --enable-static > > --disable-shared). > That's a good clue. Thanks. I'm out of th

Re: snmp_open() problem in 5.2.rc1

2004-10-28 Thread Christopher Nelson
"Robert Story (Users)" wrote: > > On Thu, 28 Oct 2004 10:13:02 -0400 [EMAIL PROTECTED] wrote: > CRC> I edited snmp_open() to start: > CRC> > CRC> struct session_list *slp; > CRC> snmp_log(LOG_INFO, > CRC> "%d:session->community=%s\n", > CRC> __LINE__, session->co

Re: snmp_open() problem in 5.2.rc1

2004-10-28 Thread Users
On Thu, 28 Oct 2004 10:13:02 -0400 [EMAIL PROTECTED] wrote: CRC> I edited snmp_open() to start: CRC> CRC> struct session_list *slp; CRC> snmp_log(LOG_INFO, CRC> "%d:session->community=%s\n", CRC> __LINE__, session->community); CRC> CRC> and find that session->co