File: Changelog

package info (click to toggle)
fcheck 2.7.59-22
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 608 kB
  • sloc: perl: 5,384; sh: 45; makefile: 41
file content (83 lines) | stat: -rw-r--r-- 2,468 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Version 2.7.51

 * Final checkin for revision control of the stable version.

Version 2.7.50

 * Modified parsing routine of the "logger" variable to allow user defined
   option flags.

 * Finally got around to fixing the trailing space bug in the configuration
   file. Now the parser is less strick of the varying editors being used to
   create configuration files.

Version 2.7.49

 * Fixed option when told to ignore creation dates to also check file size.

 * Fixed option when told to ignore diretory names (-d), when you are not
   checking recursively and don't want to see directory Inode changes.

Version 2.7.47

 * Removed the pre-defined "-t" (tag) option used by logger to allow for
   user defined output devices: scritps, programs, or device files.

 * This also fixed a reported glitch with European and some US spellings
   for filenames that contain a single quote (D'Abo) was fixed. (This was
   a bonus of the removal of forced flags above).

 * Fixed a typo found under permission calculations:

       local ($ftype) = $ftype[($mode & 0170000)>>12];

Version 2.7.46

 * Minor improvements and documentation efforts made.

 * Replaced uneeded date coding to compensate epoch of January 1, 1970 GMT

                $year += ($year < 70) ? 2000 : 1900;

   with a simpler

                $year += 1900;

   No (Y2K) harm was detected, it just wasted space.

Version 2.07.45

 * Added (per request), optional file hash and CRC calculations signature
   abilityes. This was included as an all or nothing switch '-s' so that
   operation could still remain an easy 'set and forget'.

Version 2.07.40

 * Changed the array lookups to associative array lookups to gain
   performance.

 * Removed un-needed lines of code left in from previous edits.

 * Updated documentation.

Version 2.07.38

 * RedHat Linux users needed the message string enclosed in quotes
   for logger to function properly.

 * Fixed spelling and documentation errors that initially slipped by.

Version 2.07.34

 * FCheck now runs on DOS based platforms by use of an internally
   coded "ls" replacement.

 * By making FCheck available to run on DOS based platforms, the
   remote operations needed to be removed. This feature offers too
   much temptation to open another security hole by use of the "remsh"
   command.

Version 2.06.27

 * Initial version released for public usage, after receiving feedback
   it was decided to continue support with additional features.