Added default value for hexbin type

This commit is contained in:
vdutta 2021-06-08 17:53:34 +05:30
parent 5b7ebc9eb4
commit 5d7d8d86a2

View file

@ -1093,6 +1093,8 @@ static char *get_default_value_by_type(int type)
case DMT_LONG:
case DMT_BOOL:
return "0";
case DMT_HEXBIN:
return "00";
case DMT_BASE64:
return "AA=="; // base64 encoded hex value 00
case DMT_TIME: