Fix bug in RR PX entry parsing.

This commit is contained in:
Vreixo Formoso 2008-01-01 20:27:07 +01:00
parent ad2974940a
commit 34e7a8dad0
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ int read_rr_PX(struct susp_sys_user_entry *px, struct stat *st)
return ISO_WRONG_ARG_VALUE;
}
if (px->len_sue[0] != 44 || px->len_sue[0] != 36) {
if (px->len_sue[0] != 44 && px->len_sue[0] != 36) {
return ISO_WRONG_RR;
}