Index: /issm/trunk/src/m/utils/OS/issmssh.m
===================================================================
--- /issm/trunk/src/m/utils/OS/issmssh.m	(revision 2278)
+++ /issm/trunk/src/m/utils/OS/issmssh.m	(revision 2279)
@@ -27,16 +27,9 @@
 		password=input('Password: (quoted string) ');
 
-		[status,result]=system([ISSM_DIR '/externalpackages/ssh/plink.exe -ssh -l "' username '" -pw "' password '" ' host ' "' command '"']);
-
-		if status, 
-			error('issmssh error message: could not call putty plink');
-		end
+		system([ISSM_DIR '/externalpackages/ssh/plink.exe -ssh -l "' username '" -pw "' password '" ' host ' "' command '"']);
 
 	else
 		%just use standard unix ssh
-		[status,result]=system(['ssh ' host ' ' command]);
-		if status, 
-			error('issmssh error message: could not call ssh on *nix system');
-		end
+		system(['ssh ' host ' ' command]);
 	end
 end
