From 958a819341b1876b2bd54aa4afb4889d36eb7986 Mon Sep 17 00:00:00 2001 From: ivo Date: Tue, 20 May 2008 14:35:21 +0000 Subject: [PATCH] Fixed a typo that managed to get through in oggenc's Skeleton handling routine. Thanks ogg.k.ogg.k. svn path=/trunk/vorbis-tools/; revision=14933 --- CHANGES | 3 ++- oggenc/oggenc.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 4763453..675f3b7 100644 --- a/CHANGES +++ b/CHANGES @@ -4,12 +4,13 @@ vorbis-tools 1.2.1 -- Unreleased * Corrected problems in the Visual Studio project files * ogg123: backported fix from libfishsound to patch the Speex decoder (#1347) * oggenc: fixed a core dump while resampling from FLAC (#1316) +* oggenc: fixed a typo in the Skeleton handling routine * ogginfo: support for information in Kate streams (#1360) vorbis-tools 1.2.0 -- 2008-02-21 * FLAC support now relies on libFLAC - * Support for large files + * Support for large files (#879) * Fixed acinclude.m4 to properly support --no switches * ogg123: added remote control support (#1109) * ogg123: fixed a bug in esd when pressing CTRL + C (#715) diff --git a/oggenc/oggenc.c b/oggenc/oggenc.c index 90d9e46..49682f4 100644 --- a/oggenc/oggenc.c +++ b/oggenc/oggenc.c @@ -607,7 +607,7 @@ static void parse_options(int argc, char **argv, oe_options *opt) switch(ret) { case 0: - if(!strcmp(long_options[option_index].name, "skleton")) { + if(!strcmp(long_options[option_index].name, "skeleton")) { opt->with_skeleton = 1; } else if(!strcmp(long_options[option_index].name, "managed")) { -- GitLab