Commit b8c167e8 authored by Wayne Davison's avatar Wayne Davison

F_SUM() needed to use HLINK_BUMP().

parent 17026f27
......@@ -562,7 +562,8 @@ extern int preserve_gid;
#define F_DMINOR(f) OPT_EXTRA(f, HLINK_BUMP(f) + 1)->unum
/* The sum is only present on regular files. */
#define F_SUM(f) ((const char*)OPT_EXTRA(f, LEN64_BUMP(f) + SUM_EXTRA_CNT - 1))
#define F_SUM(f) ((const char*)OPT_EXTRA(f, LEN64_BUMP(f) + HLINK_BUMP(f) \
+ SUM_EXTRA_CNT - 1))
/* A couple bool-type utility functions: */
#define F_IS_HLINKED(f) ((f)->flags & FLAG_HLINKED)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment