Fix broken enum used as a bitmap.

This commit is contained in:
Jonathan Schleifer 2011-09-10 00:10:16 +02:00
parent 2901e13cd5
commit b24c7500fd

View file

@ -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];