Remove some extra debugging I forgot to remove in the merge of Digium phone support.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368455 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2012-06-04 20:40:12 +00:00
parent 458f6c4bc0
commit c6a2cbab19
2 changed files with 0 additions and 5 deletions

View File

@@ -562,13 +562,9 @@ static void mixmonitor_save_prep(struct mixmonitor *mixmonitor, char *filename,
last_slash = strrchr(filename, '/');
ast_log(LOG_NOTICE, "!!!!!! File name is %s\n", filename);
if ((*ext = strrchr(filename, '.')) && (*ext > last_slash)) {
ast_log(LOG_NOTICE, "Found a dot. *ext is %s\n", *ext);
**ext = '\0';
*ext = *ext + 1;
ast_log(LOG_NOTICE, "After increment *ext is %s\n", *ext);
} else {
*ext = "raw";
}