Index: changelog
===================================================================
--- changelog	(revision 8c7d67f525f1439ef06bcb1c35d1143146a24d78)
+++ changelog	(revision c3057cdb181fb7b6767ad236d6192a97cffd9ba9)
@@ -12,4 +12,7 @@
  * Fixed an issue with eventlog and . matching.
  + Added shorthand ! for != in "all" numeric filters (eventlog)
+ + Added <> (same as ! and !=) as NRPE breaks the use of ! (in "all" numeric filters (eventlog))
+   Try using: filter-eventType=<>warning to remove everything that is not a warning
+ * Fixed two spelling misstakes in the SysTray module.
  
 2008-02-26 MickeM
Index: include/filter_framework.hpp
===================================================================
--- include/filter_framework.hpp	(revision 8c7d67f525f1439ef06bcb1c35d1143146a24d78)
+++ include/filter_framework.hpp	(revision c3057cdb181fb7b6767ad236d6192a97cffd9ba9)
@@ -310,4 +310,6 @@
 			} else if (value.substr(0,2) == _T("!=")) {
 				neq = value.substr(2);
+			} else if (value.substr(0,2) == _T("<>")) {
+				neq = value.substr(2);
 			} else if (value.substr(0,1) == _T("!")) {
 				neq = value.substr(1);
Index: modules/SysTray/SysTray.cpp
===================================================================
--- modules/SysTray/SysTray.cpp	(revision b5ef837d5259f7ef21114ea3318d58a7ea2a595f)
+++ modules/SysTray/SysTray.cpp	(revision c3057cdb181fb7b6767ad236d6192a97cffd9ba9)
@@ -38,9 +38,9 @@
 	try {
 		if ((serviceControll::GetServiceType(SZSERVICENAME)&SERVICE_INTERACTIVE_PROCESS)!=SERVICE_INTERACTIVE_PROCESS) {
-			NSC_LOG_ERROR(_T("SysTray is not installed (or it cannot interact with the desktop) SysTray wont be loaded. Run ") SZAPPNAME _T(" SysTray install ti change this."));
+			NSC_LOG_ERROR(_T("SysTray is not installed (or it cannot interact with the desktop) SysTray won't be loaded. Run ") SZAPPNAME _T(" SysTray install to change this."));
 			return true;
 		}
 	} catch (serviceControll::SCException e) {
-		NSC_LOG_ERROR(_T("SysTray is not installed (or it cannot interact with the desktop) SysTray wont be loaded. Run ") SZAPPNAME _T(" SysTray install ti change this."));
+		NSC_LOG_ERROR(_T("SysTray is not installed (or it cannot interact with the desktop) SysTray won't be loaded. Run ") SZAPPNAME _T(" SysTray install to change this."));
 		return true;
 	}
