PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : ERROR bei make fswcert



cane
22.10.03, 15:07
Hallo!
Wenn ich make fswcert (ein Tool für Freeswan) ausführe kommt der Error:




gcc -Wall -O2 -DVERSION=\"0.6\" -I/usr/lib/ssl/include -c fswcert.c
fswcert.c: In function ´read_pkcs12_file´:
fswcert.c:305: warning: passing arg 2 of ´sk_pop_free´ from incompatible pointer type
fswcert.c:307: warning: passing arg 2 of ´sk_pop_free´ from incompatible pointer type
gcc -L/usr/lib/ssl/lib -o fswcert fswcert.o -lcrypto


Die fswcert.c habe ich angehängt.
Da ich (leider) keine Ahnung von C habe glaube ich nur zu wissen dass in den Zeilen 305 und 307 auf etwas verlinkt wird dass nicht da ist..

Naja vielleicht wisst ihr mehr

Danke
cane

Thomas Engelke
22.10.03, 15:11
Naja, Warnings sind üblicherweise zu ignorieren. Aber es müßte in etwa so aussehen:

int a(struct abc *f) {
};

main() {
int *def;
a(def);
};

AD!

cane
22.10.03, 15:15
Öhm ja:ugly:
Versteh ich gar nicht...
Werd das Warning mal ignorieren...