--- app_controlplayback.c.orig 2008-01-12 23:58:25.000000000 +0100 +++ app_controlplayback.c 2008-01-12 23:59:38.000000000 +0100 @@ -27,7 +27,7 @@ #include "asterisk.h" -ASTERISK_FILE_VERSION(__FILE__, "$Revision: 92401 $") +ASTERISK_FILE_VERSION(__FILE__, "$Revision: working copy $") #include "asterisk/pbx.h" #include "asterisk/app.h" @@ -39,8 +39,7 @@ static const char *descrip = " ControlPlayback(file[,skipms[,ff[,rew[,stop[,pause[,restart,options]]]]]]]):\n" -"This application will play back the given filename. By default, the '*' key\n" -"can be used to rewind, and the '#' key can be used to fast-forward.\n" +"This application will play back the given filename.\n" "Parameters:\n" " skipms - This is number of milliseconds to skip when rewinding or\n" " fast-forwarding.\n" @@ -115,9 +114,9 @@ skipms = args.skip ? (atoi(args.skip) ? atoi(args.skip) : 3000) : 3000; if (!args.fwd || !is_on_phonepad(*args.fwd)) - args.fwd = "#"; + args.fwd = NULL; if (!args.rev || !is_on_phonepad(*args.rev)) - args.rev = "*"; + args.rev = NULL; if (args.stop && !is_on_phonepad(*args.stop)) args.stop = NULL; if (args.pause && !is_on_phonepad(*args.pause))