mirror of
				https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
				synced 2023-10-19 15:58:31 +00:00 
			
		
		
		
	fixed reading of skins for xfs filesystems again
This commit is contained in:
		
							
								
								
									
										4
									
								
								config.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								config.c
									
									
									
									
									
								
							| @@ -102,7 +102,9 @@ void cDesignerConfig::ReadSkinFolder(cString &skinFolder, vector<string> *contai | ||||
|         string dirEntryName = dirEntry->d_name; | ||||
|         int dirEntryType = dirEntry->d_type; | ||||
|         cString subfolder = cString::sprintf("%s%s", *skinFolder, dirEntryName.c_str()); | ||||
|         if (!dirEntryName.compare(".") || !dirEntryName.compare("..") || !dirEntryName.compare("skinrepositories") || (dirEntryType != DT_DIR  && dirEntryType != DT_LNK) || !DirectoryOk(*subfolder, false)) | ||||
|         if (!dirEntryName.compare(".") || !dirEntryName.compare("..") || !dirEntryName.compare("skinrepositories")) | ||||
|             continue; | ||||
|         if (dirEntryType != DT_DIR  && dirEntryType != DT_LNK && !DirectoryOk(*subfolder, false)) | ||||
|             continue; | ||||
|         container->push_back(dirEntryName); | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user