On Mon, Jun 22, 2020 at 2:16 AM Arvind Raghavan <raghavan.arvind@xxxxxxxxx> wrote: > > Allow regular links and symlinks to be passed as input to fssum. > > Signed-off-by: Arvind Raghavan <raghavan.arvind@xxxxxxxxx> > Signed-off-by: Jayashree Mohan <jaya@xxxxxxxxxxxxx> > Signed-off-by: Vijay Chidambaram <vijay@xxxxxxxxxxxxx> Reviewed-by: Amir Goldstein <amir73il@xxxxxxxxx> > --- > Since v1: > - Simplified logic by using sum_one > src/fssum.c | 21 +++++++++++++++++++-- > 1 file changed, 19 insertions(+), 2 deletions(-) > > diff --git a/src/fssum.c b/src/fssum.c > index 26b0096c..c5c27486 100644 > --- a/src/fssum.c > +++ b/src/fssum.c > @@ -29,6 +29,7 @@ > #include <inttypes.h> > #include <assert.h> > #include <endian.h> > +#include <libgen.h> > Is this needed by this patch? needed at all? Should it have been added in a previous patch? Thanks, Amir.