diff --git a/res/res_agi.c b/res/res_agi.c
index 807b3a3364cc3d7df135c4ed9a3d6defa0ac59c5..5cbc138f0084e837e9eef0318a06796d12e820bf 100755
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -433,8 +433,7 @@ static int handle_streamfile(struct ast_channel *chan, AGI *agi, int argc, char
 	fs = ast_openstream(chan, argv[2], chan->language);
 	if(!fs){
 		fdprintf(agi->fd, "200 result=%d endpos=%ld\n", 0, sample_offset);
-		ast_log(LOG_WARNING, "Unable to open %s\n", argv[2]);
-		return RESULT_FAILURE;
+		return RESULT_SUCCESS;
 	}
 	ast_seekstream(fs, 0, SEEK_END);
 	max_length = ast_tellstream(fs);