diff options
| -rw-r--r-- | src/srtp.cc | 8 | 
1 files changed, 2 insertions, 6 deletions
| diff --git a/src/srtp.cc b/src/srtp.cc index 72b3651..a7abd5c 100644 --- a/src/srtp.cc +++ b/src/srtp.cc @@ -28,13 +28,9 @@  #include "srtp.h"  #ifdef WIN32 -#include <srtp/crypto/include/datatypes.h> -#include <srtp/include/srtp.h> -#include <srtp/include/rtp_priv.h> +#include <include/srtp.h>  #else -#include <srtp/datatypes.h>  #include <srtp/srtp.h> -#include <srtp/rtp_priv.h>  #endif  #include "asc2bin.h" @@ -135,7 +131,7 @@ void SRTP::setupPolicy(bool confidentiality, bool authentication)  {  #ifndef USE_CRYPTO    confidentiality = authentication = false; -  printf("No crypto!\n") +  printf("No crypto!\n");  #endif      /*  | 
