Revision: 117
http://svn.sourceforge.net/nmailserver/?rev=117&view=rev
Author: tmyroadctfig
Date: 2007-01-19 04:51:44 -0800 (Fri, 19 Jan 2007)
Log Message:
-----------
Removed SSH references.
Modified Paths:
--------------
NMail/trunk/NMail.PostInstall/PostInstallForm.cs
Modified: NMail/trunk/NMail.PostInstall/PostInstallForm.cs
===================================================================
--- NMail/trunk/NMail.PostInstall/PostInstallForm.cs 2007-01-19 12:49:27 UTC (rev 116)
+++ NMail/trunk/NMail.PostInstall/PostInstallForm.cs 2007-01-19 12:51:44 UTC (rev 117)
@@ -45,9 +45,9 @@
}
private void DeleteSmtpServiceCounters() {
- if (PerformanceCounterCategory.Exists(SmtpService.SmtpService.PerfCounterCategory)) {
+ if (PerformanceCounterCategory.Exists(SmtpService.SmtpService.SmtpPerfCounterCategory)) {
// Remove any old performance counters if they are present
- PerformanceCounterCategory.Delete(SmtpService.SmtpService.PerfCounterCategory);
+ PerformanceCounterCategory.Delete(SmtpService.SmtpService.SmtpPerfCounterCategory);
}
}
@@ -63,7 +63,7 @@
// Create the category with all the counters
PerformanceCounterCategory.Create(
- SmtpService.SmtpService.PerfCounterCategory,
+ SmtpService.SmtpService.SmtpPerfCounterCategory,
"Performance counters for NMail's SMTP service.",
PerformanceCounterCategoryType.SingleInstance,
ccdc);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|