]> git.sesse.net Git - vlc/blobdiff - modules/demux/au.c
mkv.cpp: avoid dependency problems with older libmatroska
[vlc] / modules / demux / au.c
index 514da8ccc41e0161266474c99d40663ef1a9f414..f97acf47f37503c620ec411e75ae387d33d423cf 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * au.c : au file input module for vlc
  *****************************************************************************
- * Copyright (C) 2001-2003 VideoLAN
+ * Copyright (C) 2001-2003 the VideoLAN team
  * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
@@ -107,7 +107,7 @@ static int Open( vlc_object_t *p_this )
 
     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
 
-    if( strncmp( p_peek, ".snd", 4 ) )
+    if( memcmp( p_peek, ".snd", 4 ) )
     {
         return VLC_EGENERIC;
     }