@@ -471,40 +471,40 @@ { unsigned long hash; OFHashInit(&hash); - OFHashAdd(&hash, _allowsStdIO); - OFHashAdd(&hash, _allowsReadingFiles); - OFHashAdd(&hash, _allowsWritingFiles); - OFHashAdd(&hash, _allowsCreatingFiles); - OFHashAdd(&hash, _allowsCreatingSpecialFiles); - OFHashAdd(&hash, _allowsTemporaryFiles); - OFHashAdd(&hash, _allowsIPSockets); - OFHashAdd(&hash, _allowsMulticastSockets); - OFHashAdd(&hash, _allowsChangingFileAttributes); - OFHashAdd(&hash, _allowsFileOwnerChanges); - OFHashAdd(&hash, _allowsFileLocks); - OFHashAdd(&hash, _allowsUNIXSockets); - OFHashAdd(&hash, _allowsDNS); - OFHashAdd(&hash, _allowsUserDatabaseReading); - OFHashAdd(&hash, _allowsFileDescriptorSending); - OFHashAdd(&hash, _allowsFileDescriptorReceiving); - OFHashAdd(&hash, _allowsTape); - OFHashAdd(&hash, _allowsTTY); - OFHashAdd(&hash, _allowsProcessOperations); - OFHashAdd(&hash, _allowsExec); - OFHashAdd(&hash, _allowsProtExec); - OFHashAdd(&hash, _allowsSetTime); - OFHashAdd(&hash, _allowsPS); - OFHashAdd(&hash, _allowsVMInfo); - OFHashAdd(&hash, _allowsChangingProcessRights); - OFHashAdd(&hash, _allowsPF); - OFHashAdd(&hash, _allowsAudio); - OFHashAdd(&hash, _allowsBPF); - OFHashAdd(&hash, _allowsUnveil); - OFHashAdd(&hash, _returnsErrors); + OFHashAddByte(&hash, _allowsStdIO); + OFHashAddByte(&hash, _allowsReadingFiles); + OFHashAddByte(&hash, _allowsWritingFiles); + OFHashAddByte(&hash, _allowsCreatingFiles); + OFHashAddByte(&hash, _allowsCreatingSpecialFiles); + OFHashAddByte(&hash, _allowsTemporaryFiles); + OFHashAddByte(&hash, _allowsIPSockets); + OFHashAddByte(&hash, _allowsMulticastSockets); + OFHashAddByte(&hash, _allowsChangingFileAttributes); + OFHashAddByte(&hash, _allowsFileOwnerChanges); + OFHashAddByte(&hash, _allowsFileLocks); + OFHashAddByte(&hash, _allowsUNIXSockets); + OFHashAddByte(&hash, _allowsDNS); + OFHashAddByte(&hash, _allowsUserDatabaseReading); + OFHashAddByte(&hash, _allowsFileDescriptorSending); + OFHashAddByte(&hash, _allowsFileDescriptorReceiving); + OFHashAddByte(&hash, _allowsTape); + OFHashAddByte(&hash, _allowsTTY); + OFHashAddByte(&hash, _allowsProcessOperations); + OFHashAddByte(&hash, _allowsExec); + OFHashAddByte(&hash, _allowsProtExec); + OFHashAddByte(&hash, _allowsSetTime); + OFHashAddByte(&hash, _allowsPS); + OFHashAddByte(&hash, _allowsVMInfo); + OFHashAddByte(&hash, _allowsChangingProcessRights); + OFHashAddByte(&hash, _allowsPF); + OFHashAddByte(&hash, _allowsAudio); + OFHashAddByte(&hash, _allowsBPF); + OFHashAddByte(&hash, _allowsUnveil); + OFHashAddByte(&hash, _returnsErrors); OFHashFinalize(&hash); return hash; }