Version 0.1.9 from FTP

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@338 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2001-06-26 19:17:27 +00:00
parent 37bcb5098b
commit 7c83e67367
2 changed files with 6 additions and 4 deletions

View File

@@ -31,8 +31,8 @@ static char *app = "Echo";
static char *synopsis = "Echo audio read back to the user";
static char *descrip =
" Echo(): Echo audio read from channel back to the channel. Returns 0\n"
" if the user exits with the '#' key, or -1 if the user hangs up.\n";
" Echo(): Echo audio read from channel back to the channel. Returns 0\n"
"if the user exits with the '#' key, or -1 if the user hangs up.\n";
STANDARD_LOCAL_USER;
@@ -57,6 +57,7 @@ static int echo_exec(struct ast_channel *chan, void *data)
if (ast_write(chan, f))
break;
}
ast_frfree(f);
}
LOCAL_USER_REMOVE(u);
return res;