|
From: Marcus S. <ad...@us...> - 2005-10-18 15:26:41
|
Update of /cvsroot/srtp/srtp/crypto/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9243 Modified Files: err.c Log Message: Add support for SRTP_KERNEL_LINUX. Index: err.c =================================================================== RCS file: /cvsroot/srtp/srtp/crypto/kernel/err.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** err.c 8 Oct 2005 16:58:13 -0000 1.4 --- err.c 18 Oct 2005 15:26:31 -0000 1.5 *************** *** 56,59 **** --- 56,68 ---- err_reporting_level_t err_level = err_level_none; + #ifdef SRTP_KERNEL_LINUX + err_status_t + err_reporting_init(char *ident) { + + return err_status_ok; + } + + #else /* SRTP_KERNEL_LINUX */ + /* err_file is the FILE to which errors are reported */ *************** *** 132,135 **** --- 141,145 ---- } } + #endif /* SRTP_KERNEL_LINUX */ void |