0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

10l for al3x :-P

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3059 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2001-11-21 22:56:38 +00:00
parent 74c82e3bb7
commit bcdb01b143

View File

@ -628,7 +628,7 @@ int demux_info_add(demuxer_t *demuxer, char *opt, char *param)
{
demuxer_info_t *info = &demuxer->info;
if (!strncmp(opt, "name"))
if (!strcmp(opt, "name"))
{
if (info->name)
{
@ -640,7 +640,7 @@ int demux_info_add(demuxer_t *demuxer, char *opt, char *param)
return(1);
}
if (!strncmp(opt, "author"))
if (!strcmp(opt, "author"))
{
if (info->author)
{
@ -652,7 +652,7 @@ int demux_info_add(demuxer_t *demuxer, char *opt, char *param)
return(1);
}
if (!strncmp(opt, "encoder"))
if (!strcmp(opt, "encoder"))
{
if (info->encoder)
{
@ -664,7 +664,7 @@ int demux_info_add(demuxer_t *demuxer, char *opt, char *param)
return(1);
}
if (!strncmp(opt, "comments"))
if (!strcmp(opt, "comments"))
{
if (info->comments)
{