Fix broken enum used as a bitmap.
This commit is contained in:
parent
2901e13cd5
commit
b24c7500fd
1 changed files with 3 additions and 1 deletions
|
@ -170,7 +170,9 @@
|
|||
OFEnumerator *enumerator;
|
||||
OFString *comp;
|
||||
enum {
|
||||
GOT_SNONCE, GOT_SALT, GOT_ITERCOUNT
|
||||
GOT_SNONCE = 0x01,
|
||||
GOT_SALT = 0x02,
|
||||
GOT_ITERCOUNT = 0x04
|
||||
} got = 0;
|
||||
|
||||
hash = [[[hashType alloc] init] autorelease];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue