Update _BSD_SOURCE to _DEFAULT_SOURCE.
[finddup.git] / finddup.c
index cf9948e..6f6af38 100644 (file)
--- a/finddup.c
+++ b/finddup.c
@@ -23,9 +23,9 @@
  *
  */
 
-#define VERSION_NUMBER "1.2"
+#define VERSION_NUMBER "1.2.1"
 
-#define _BSD_SOURCE
+#define _DEFAULT_SOURCE
 
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -56,8 +56,8 @@ int ignore_dotfiles = 0; /* 1 means ignore files and directories
 
 int ignore_empty_files = 0; /* 1 means ignore empty files */
 
-int show_realpaths = 0; /* 1 means ignore files and directories
-                            starting with a dot */
+int show_realpaths = 0; /* 1 show the canonical absolute pathname for
+                           printed files */
 
 int show_progress = 0; /* 1 means show a progress bar when we are in a
                           tty */