------- Additional Comments From rth at gcc dot gnu dot org 2005-08-08 22:10 ------- Amusingly, the problem disappears when one translates this:
salt_len = (((strcspn (salt, "$"))<(8))?(strcspn (salt, "$")):(8)); to salt_len = strcspn (salt, "$"); if (salt_len > 8) salt_len = 8; Note that the strcspn function isn't cse'd, as someone was clearly expecting. -- What |Removed |Added ---------------------------------------------------------------------------- Last reconfirmed|0000-00-00 00:00:00 |2005-08-08 22:10:26 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22045