diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-03-24 14:23:56 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-03-24 14:23:56 +0000 |
commit | 727c083f5d5dea750e96b56a1cf443914f1e1ba5 (patch) | |
tree | 580fd3dd89c637e3007310339eb27c4dc68775b7 | |
parent | a3d1eac9b0f3acac4a0bea2e31b2a26be7ae8c2f (diff) | |
download | xine-lib-727c083f5d5dea750e96b56a1cf443914f1e1ba5.tar.gz xine-lib-727c083f5d5dea750e96b56a1cf443914f1e1ba5.tar.bz2 |
file plugin ident should be upcase, like other autoplay featured plugins
CVS patchset: 4473
CVS date: 2003/03/24 14:23:56
-rw-r--r-- | src/input/input_file.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index 5800f20a6..a6991c74e 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_file.c,v 1.76 2003/03/07 17:01:34 mroi Exp $ + * $Id: input_file.c,v 1.77 2003/03/24 14:23:56 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -816,7 +816,6 @@ static void *init_plugin (xine_t *xine, void *data) { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_INPUT, 11, "file", XINE_VERSION_CODE, NULL, init_plugin }, + { PLUGIN_INPUT, 11, "FILE", XINE_VERSION_CODE, NULL, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; - |