]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
do this fix properly :-)
authorKevin P. Fleming <kpfleming@digium.com>
Tue, 19 Sep 2006 23:08:35 +0000 (23:08 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Tue, 19 Sep 2006 23:08:35 +0000 (23:08 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43302 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_musiconhold.c

index 408201706c4ba6c96760d75a5d13c76973a5a8f1..13053306961342a8106ddab2eb196310822680db 100644 (file)
@@ -778,8 +778,8 @@ static int moh_scan_files(struct mohclass *class) {
                if ((strlen(files_dirent->d_name) < 4))
                        continue;
 
-               /* Skip standard license file - it is not audio */
-               if (!strcmp(files_dirent->d_name, "LICENSE"))
+               /* Skip files without extensions... they are not audio */
+               if (!strchr(files_dirent->d_name, '.'))
                        continue;
 
                snprintf(filepath, sizeof(filepath), "%s/%s", class->dir, files_dirent->d_name);