From 44daf274a0cff1267e5daf8d0778d46d075fdf1c Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 24 Feb 2011 01:41:26 +0000 Subject: [PATCH] [controller] change variable names --- SparkleShare/SparkleController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleController.cs b/SparkleShare/SparkleController.cs index 7d0adf24..7eb2a4fb 100644 --- a/SparkleShare/SparkleController.cs +++ b/SparkleShare/SparkleController.cs @@ -1130,8 +1130,8 @@ namespace SparkleShare { { MD5 md5 = new MD5CryptoServiceProvider (); Byte[] bytes = ASCIIEncoding.Default.GetBytes (s); - Byte[] encodedBytes = md5.ComputeHash (bytes); - return BitConverter.ToString (encodedBytes).ToLower ().Replace ("-", ""); + Byte[] encoded_bytes = md5.ComputeHash (bytes); + return BitConverter.ToString (encoded_bytes).ToLower ().Replace ("-", ""); }