Adding comment for empty case in GetNameType

This commit is contained in:
Eric Blankenhorn
2018-09-04 18:08:40 -05:00
parent 6171e29fe8
commit 28ad8e591d

View File

@@ -9466,7 +9466,9 @@ static char GetNameType(CertName* name, int idx)
#else
case 7:
#endif
/* FALL THROUGH */
/* The last index, email name, does not have encoding type.
The empty case here is to keep track of it for future reference. */
default:
return 0;
}