Changeset c3057cd in nscp
- Timestamp:
- 03/05/08 19:15:13 (5 years ago)
- Branches:
- master, 0.4.0, 0.4.1, 0.4.2, stable
- Children:
- a88c550
- Parents:
- 8c7d67f
- Files:
-
- 3 edited
-
changelog (modified) (1 diff)
-
include/filter_framework.hpp (modified) (1 diff)
-
modules/SysTray/SysTray.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
changelog
r8c7d67f rc3057cd 12 12 * Fixed an issue with eventlog and . matching. 13 13 + Added shorthand ! for != in "all" numeric filters (eventlog) 14 + Added <> (same as ! and !=) as NRPE breaks the use of ! (in "all" numeric filters (eventlog)) 15 Try using: filter-eventType=<>warning to remove everything that is not a warning 16 * Fixed two spelling misstakes in the SysTray module. 14 17 15 18 2008-02-26 MickeM -
include/filter_framework.hpp
r8c7d67f rc3057cd 310 310 } else if (value.substr(0,2) == _T("!=")) { 311 311 neq = value.substr(2); 312 } else if (value.substr(0,2) == _T("<>")) { 313 neq = value.substr(2); 312 314 } else if (value.substr(0,1) == _T("!")) { 313 315 neq = value.substr(1); -
modules/SysTray/SysTray.cpp
rb5ef837 rc3057cd 38 38 try { 39 39 if ((serviceControll::GetServiceType(SZSERVICENAME)&SERVICE_INTERACTIVE_PROCESS)!=SERVICE_INTERACTIVE_PROCESS) { 40 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 tichange this."));40 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.")); 41 41 return true; 42 42 } 43 43 } catch (serviceControll::SCException e) { 44 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 tichange this."));44 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.")); 45 45 return true; 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.








