From: Szabolcs Nagy Date: Sun, 13 Jan 2013 22:54:48 +0000 (+0100) Subject: in crypt_des change unnecessary union keybuf into unsigned char[] X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=9724defdb72fdb2ae4e8a60e928d40d84fe04800;hp=9724defdb72fdb2ae4e8a60e928d40d84fe04800 in crypt_des change unnecessary union keybuf into unsigned char[] original FreeSec code accessed keybuf as uint32* and uint8* as well (incorrectly), this got fixed with an union, but then it seems the uint32* access is no longer needed so the code can be simplified ---