Clean up coding style for last commit

This commit is contained in:
Hylke Bons 2012-08-27 14:08:40 +01:00
parent 4fdb65b2f3
commit 7caac5010f

View file

@ -191,20 +191,20 @@ namespace SparkleShare {
private void StartSSH () private void StartSSH ()
{ {
string auth_agent_pid = Environment.GetEnvironmentVariable("SSH_AGENT_PID"); string auth_agent_pid = Environment.GetEnvironmentVariable ("SSH_AGENT_PID");
if (!string.IsNullOrEmpty (auth_agent_pid)) { if (!string.IsNullOrEmpty (auth_agent_pid)) {
SparkleLogger.LogInfo("Controller", "Trying existing ssh-agent with PID=" + auth_agent_pid); SparkleLogger.LogInfo ("Controller", "Trying to use existing ssh-agent with PID=" + auth_agent_pid + "...");
this.ssh_agent_pid = Convert.ToInt32(auth_agent_pid); this.ssh_agent_pid = Convert.ToInt32(auth_agent_pid);
try
{ try {
Process ssh_agent = Process.GetProcessById(this.ssh_agent_pid); Process ssh_agent = Process.GetProcessById (this.ssh_agent_pid);
SparkleLogger.LogInfo("Controller", "Using existing ssh-agent with PID=" + this.ssh_agent_pid); SparkleLogger.LogInfo ("Controller", "Using existing ssh-agent with PID=" + this.ssh_agent_pid);
return; return;
}
catch (ArgumentException e) } catch (ArgumentException e) {
{ SparkleLogger.LogInfo ("Controller", "ssh-agent with PID=" + auth_agent_pid + " does not exist. Starting a new one...");
SparkleLogger.LogInfo("Controller", "ssh-agent with PID=" + auth_agent_pid + " does not exist. Starting a new one");
} }
} }
@ -223,7 +223,7 @@ namespace SparkleShare {
Match ssh_pid_match = new Regex (@"SSH_AGENT_PID=([^;\n\r]*)").Match (output); Match ssh_pid_match = new Regex (@"SSH_AGENT_PID=([^;\n\r]*)").Match (output);
if (auth_sock_match.Success) if (auth_sock_match.Success)
Environment.SetEnvironmentVariable("SSH_AUTH_SOCK", auth_sock_match.Groups[1].Value); Environment.SetEnvironmentVariable ("SSH_AUTH_SOCK", auth_sock_match.Groups [1].Value);
if (ssh_pid_match.Success) { if (ssh_pid_match.Success) {
string ssh_pid = ssh_pid_match.Groups [1].Value; string ssh_pid = ssh_pid_match.Groups [1].Value;