diff --git a/src/XMPPSCRAMAuth.m b/src/XMPPSCRAMAuth.m index 4b722f7..22e6f94 100644 --- a/src/XMPPSCRAMAuth.m +++ b/src/XMPPSCRAMAuth.m @@ -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];