diff --git a/include/asterisk/rtp.h b/include/asterisk/rtp.h index 7c66a85dab..791e46e9f8 100755 --- a/include/asterisk/rtp.h +++ b/include/asterisk/rtp.h @@ -46,6 +46,7 @@ int ast2rtp(int id); int rtp2ast(int id); +char *ast2rtpn(int id); #if defined(__cplusplus) || defined(c_plusplus) } diff --git a/res/res_crypto.c b/res/res_crypto.c index 6d9b4353ec..5ac2e441b5 100755 --- a/res/res_crypto.c +++ b/res/res_crypto.c @@ -81,11 +81,13 @@ struct ast_key { static struct ast_key *keys = NULL; + +#if 0 static int fdprint(int fd, char *s) { return write(fd, s, strlen(s) + 1); } - +#endif static int pw_cb(char *buf, int size, int rwflag, void *userdata) { struct ast_key *key = (struct ast_key *)userdata;