Mapped unknown severity text to ALL rather than NEVER

This commit is contained in:
Thomas Schmitt 2008-02-21 20:22:53 +00:00
parent d2a4440915
commit b8c9935158
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2008.02.21.201238"
#define Cdrskin_timestamP "2008.02.21.202216"

View File

@ -273,7 +273,7 @@ int libdax_msgs__text_to_sev(char *severity_name, int *severity,
else if(strncmp(severity_name,"ALL",3)==0)
*severity= LIBDAX_MSGS_SEV_ALL;
else {
*severity= LIBDAX_MSGS_SEV_NEVER;
*severity= LIBDAX_MSGS_SEV_ALL;
return(0);
}
return(1);