mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	Utilities: Allow filenames containing '=' in dd (#8766)
This commit is contained in:
		
							parent
							
								
									e46a4181fa
								
							
						
					
					
						commit
						30af999431
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -39,8 +39,8 @@ static String split_at_equals(const char* argument) | |||
| { | ||||
|     String string_value(argument); | ||||
| 
 | ||||
|     auto values = string_value.split('='); | ||||
|     if (values.size() != 2) { | ||||
|     auto values = string_value.split_limit('=', 2); | ||||
|     if (values.size() < 2) { | ||||
|         warnln("Unable to parse: {}", argument); | ||||
|         return {}; | ||||
|     } else { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dhruv Maroo
						Dhruv Maroo