uuid.c (e2p_is_null_uuid): Fix really stupid bug which could cause dumpe2fs
to fail to display a the journal or hash seed UUID. (Thanks to Guillaume
Chambraud for pointing this out.)
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
+2006-04-18 Theodore Ts'o <tytso@mit.edu>
+
+ * uuid.c (e2p_is_null_uuid): Fix really stupid bug which could
+ cause dumpe2fs to fail to display a the journal or hash
+ seed UUID. (Thanks to Guillaume Chambraud for pointing
+ this out.)
+
2006-03-23 Theodore Ts'o <tytso@mit.edu>
* feature.c (e2p_edit_feature): If the pseudo-feature "none" or
int i;
for (i=0, cp = uu; i < 16; i++)
- if (*cp)
+ if (*cp++)
return 0;
return 1;
}