util: allow \n to terminate password input
The qemu_read_password() method looks for \r to terminate the reading of the a password. This is what will be seen when reading the password from a TTY. When scripting though, it is useful to be able to send the password via a pipe, in which case we must look for \n to terminate password input. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
		
							parent
							
								
									d57e4e482e
								
							
						
					
					
						commit
						6a11d5183f
					
				@ -467,7 +467,8 @@ int qemu_read_password(char *buf, int buf_size)
 | 
				
			|||||||
            ret = -1;
 | 
					            ret = -1;
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            if (ch == '\r') {
 | 
					            if (ch == '\r' ||
 | 
				
			||||||
 | 
					                ch == '\n') {
 | 
				
			||||||
                ret = 0;
 | 
					                ret = 0;
 | 
				
			||||||
                break;
 | 
					                break;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user