X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=finddup.c;h=f1e3cf0f007327d1d0ab56eac803f334348a0c73;hb=f34775663d2b9b3a3cea95b0954e2e62dad1410e;hp=562cf5c804825395fb57dfa91661245bfe4a6241;hpb=14690a5a5110d5ef464bb33554c2ab9e9baa6dce;p=finddup.git diff --git a/finddup.c b/finddup.c index 562cf5c..f1e3cf0 100644 --- a/finddup.c +++ b/finddup.c @@ -350,6 +350,9 @@ void start(const char *dirname1, const char *dirname2) { if(dirname2) { if(strncmp(dirname2, "not:", 4) == 0) { not_in = 1; + /* We should show groups even in that mode. However they are not + properly calculated for now, so we force it off. */ + show_groups = 0; dirname2 += 4; } if(show_progress) { @@ -468,7 +471,7 @@ int main(int argc, char **argv) { setlocale (LC_ALL, ""); while (1) { - c = getopt(argc, argv, "hrcgd0p"); + c = getopt(argc, argv, "hircgd0p"); if (c == -1) break;