Showing the group IDs now by default.
[finddup.git] / finddup.c
index 514a676..7a20257 100644 (file)
--- a/finddup.c
+++ b/finddup.c
@@ -58,7 +58,7 @@ int show_progress = 1; /* 1 means show a progress bar when we are in a
 int show_hits = 1; /* 1 means to show the files from dir2
                       corresponding to the ones from dir1 */
 
-int show_groups = 0; /* 1 means to show the group IDs when printing
+int show_groups = 1; /* 1 means to show the group IDs when printing
                         file names */
 
 /********************************************************************/
@@ -342,7 +342,7 @@ void print_help(FILE *out) {
   fprintf(out, "   -h   show this help\n");
   fprintf(out, "   -d   ignore dot files and directories\n");
   fprintf(out, "   -c   do not show which files in DIR2 corresponds to those in DIR1\n");
-  fprintf(out, "   -g   show the file groups\n");
+  fprintf(out, "   -g   do not show the file groups\n");
   fprintf(out, "   -r   show the real file paths\n");
   fprintf(out, "\n");
   fprintf(out, "Report bugs and comments to <francois@fleuret.org>\n");
@@ -380,7 +380,7 @@ int main(int argc, char **argv) {
       break;
 
     case 'g':
-      show_groups = 1;
+      show_groups = 0;
       break;
 
     case 'c':