From cc2fb34bb3c0a49a634808e1985d5c4eba5acbdc Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Tue, 18 Apr 2006 23:50:59 +0000 Subject: [PATCH] fix obvious breakage git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@21239 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- formats/format_h263.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/formats/format_h263.c b/formats/format_h263.c index 602943dbc5..16b090c64b 100644 --- a/formats/format_h263.c +++ b/formats/format_h263.c @@ -1,7 +1,7 @@ /* * Asterisk -- An open source telephony toolkit. * - * Copyright (C) 1999 - 2005, Digium, Inc. + * Copyright (C) 1999 - 2006, Digium, Inc. * * Mark Spencer * @@ -165,7 +165,7 @@ static off_t h263_tell(struct ast_filestream *fs) static const struct ast_format h263_f = { .name = "h263", - .exts = "h264", + .exts = "h263", .format = AST_FORMAT_H263, .open = h263_open, .write = h263_write,