modprobe/insmod: fix parameter quoting
function old new delta parse_cmdline_module_options 102 157 +55 modprobe_main 657 662 +5 insmod_main 68 70 +2 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/0 up/down: 62/0) Total: 62 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
		@@ -589,7 +589,7 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv)
 | 
			
		||||
		/* First argument is module name, rest are parameters */
 | 
			
		||||
		DBG("probing just module %s", *argv);
 | 
			
		||||
		add_probe(argv[0]);
 | 
			
		||||
		G.cmdline_mopts = parse_cmdline_module_options(argv);
 | 
			
		||||
		G.cmdline_mopts = parse_cmdline_module_options(argv, /*quote_spaces:*/ 1);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/* Happens if all requested modules are already loaded */
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user