If no key domain is found, 0 is used by default.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos 2023-03-07 23:15:50 +01:00
parent 51e9e6722e
commit d81b21695f
No known key found for this signature in database
GPG key ID: C0095B7870A4CCD3

View file

@ -27,7 +27,7 @@ uint8_t get_key_domain(file_t *fkey) {
if (meta_tag) {
return *meta_tag;
}
return 0xff;
return 0;
}
int cmd_key_domain() {