| Index: server/control_segments/crashinfo
 | 
| diff --git a/server/control_segments/crashinfo b/server/control_segments/crashinfo
 | 
| index c80283257497ba6d47c58bcc6a649184603698e3..c273620990d02c815c81fe4325e799fa210e31fb 100644
 | 
| --- a/server/control_segments/crashinfo
 | 
| +++ b/server/control_segments/crashinfo
 | 
| @@ -2,7 +2,10 @@ from autotest_lib.server import crashcollect
 | 
|  
 | 
|  
 | 
|  def crashinfo(machine):
 | 
| -    host = hosts.create_host(machine, initialize=False, auto_monitor=False)
 | 
| +    hostname, user, passwd, port = parse_machine(machine, ssh_user,
 | 
| +                                                 ssh_port, ssh_pass)
 | 
| +    host = hosts.create_host(hostname, user=user, port=port, initialize=False,
 | 
| +                             password=passwd, auto_monitor=False)
 | 
|      crashcollect.get_crashinfo(host, test_start_time)
 | 
|  
 | 
|  
 | 
| 
 |