do not show which files from DIR2 corresponds to files from DIR1
.TP
\fB-g\fR
-show the file group IDs (one group for each content)
+do not show the file group IDs (one group for each content)
.TP
\fB-r\fR
shows the real path of the files
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 */
/********************************************************************/
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");
break;
case 'g':
- show_groups = 1;
+ show_groups = 0;
break;
case 'c':