Hi,
The problem is in your Makefile (include order of ssl and crypto). Try a
Makefile something like:
CC=gcc
CFLAGS= -g -I../../include -I../../ssl -I../../crypto -Wall
LIBS= -L../.. -lssl -lcrypto
EXAMPLES=cli
all: $(EXAMPLES)
cli: cli.o
$(CC) cli.o -o cli $(LIBS)
clean:
rm -f $(EXAMPLES) *.o
rm -f cli
[]'s Gleison
Juan Carlos Castro y Castro wrote:
> No, the space is allocated by X509_NAME_oneline(). In the demo source,
> it's deallocated by Free() (with a capital F), but this function is not
> available in Win32. Using free() (lowercase F) causes a GPF. My doubt is,
> what should I use?
>
> Juan
>
> lucian wrote:
>
> > Hi Juan!
> > I spretty simple: with free() the opposite of malloc().
> > :)
> > Enjoy with OpenSSL!
> > Lucian.
>
> --
> "What is freedom of expression? Without the freedom to offend,
> it ceases to exist." -- Salman Rushdie
>
> ______________________________________________________________________
> OpenSSL Project http://www.openssl.org
> User Support Mailing List [EMAIL PROTECTED]
> Automated List Manager [EMAIL PROTECTED]
______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]