From: Sebastian B. <sb...@us...> - 2014-02-23 13:19:59
|
Update of /cvsroot/simplemail/simplemail In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv24021 Modified Files: tcp.c Log Message: Added proper SAS C prototype by using #ifdef. This is not nice, but the quickest way for now to get 68k compability. Index: tcp.c =================================================================== RCS file: /cvsroot/simplemail/simplemail/tcp.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- tcp.c 22 Feb 2014 19:54:27 -0000 1.56 +++ tcp.c 23 Feb 2014 13:19:57 -0000 1.57 @@ -237,7 +237,11 @@ * @param x509_ctx * @return */ +#ifdef __SASC +static int __saveds tcp_make_secure_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) +#else static int tcp_make_secure_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx) +#endif { return preverify_ok; } |