Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanups #176

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ to fdupes. Every item on the list includes, inside square brackets,
a list of indentifiers referring to the people who contributed
that particular item. When more than one person is listed the person
who contributed the patch or idea appears first, followed by
those who've otherwise worked on that item. For a list of
those who've otherwise worked on that item. For a list of
contributors names and identifiers please see the CONTRIBUTORS file.

Changes from 2.2.0 to 2.2.1:
Expand Down Expand Up @@ -64,7 +64,7 @@ Changes from 1.51 to 1.6.0:
- Speed up file comparison. [SB, ST]
- Fix bug where fdupes fails to consistently ignore hardlinks, depending on
file processing order, when F_CONSIDERHARDLINKS flag is not set. [AL]
- Fix bug in is_hardlink(): Proper traversal of duplicates is done via
- Fix bug in is_hardlink(): Proper traversal of duplicates is done via
dupe->duplicates, not via dupe->next. [AL]
- Revise md5.c to compile under OSX. [TH]
- Remove EXTERNAL_MD5 configuration option. [ID]
Expand All @@ -87,7 +87,7 @@ Changes from 1.40 to 1.50-PR2
- Added "--noprompt" option for totally automated deletion of
duplicate files.
- Now sorts duplicates (old to new) for consistent order when
listing or deleteing duplicate files.
listing or deleting duplicate files.
- Now tests for early matching of files, which should help speed up
the matching process when large files are involved.
- Added warning whenever a file cannot be deleted. [CHL, AL]
Expand All @@ -106,7 +106,7 @@ Changes from 1.40 to 1.50-PR2

Changes from 1.31 to 1.40

- Added option to omit the first file in each group
- Added option to omit the first file in each group
of matches. [LM, AL]
- Added escaping of filenames containing spaces when
sameline option is specified. [AL]
Expand All @@ -118,7 +118,7 @@ Changes from 1.31 to 1.40
Changes from 1.30 to 1.31

- Added interactive option to preserve all files during
delete procedure (something similar was already in
delete procedure (something similar was already in
place, but now it's official). [AL]
- Updated delete procedure prompt format. [AL]
- Cosmetic code changes. [AL]
Expand All @@ -140,7 +140,7 @@ Changes from 1.12 to 1.20
scanned were named pipes or sockets. [FD]
- Fix against security risk resulting from the use of a
temporary file to store md5sum output. [FD, AL]
- Using an external md5sum program is now optional. Started
- Using an external md5sum program is now optional. Started
using L. Peter Deutsh's MD5 library instead. [FD, AL]
- Added hardlinks option to distinguish between hard links
and actual duplicate files. [FD, AL]
Expand All @@ -149,7 +149,7 @@ Changes from 1.12 to 1.20

Changes from 1.11 to 1.12

- Improved handling of extremely long input on preserve
- Improved handling of extremely long input on preserve
prompt (delete option). [SSD, AL]

Changes from 1.1 to 1.11
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
The following people have contributed in some way to the development
The following people have contributed in some way to the development
of fdupes. Please see the CHANGES file for detailed information
on their contributions. Names are listed in alphabetical order.

[AB] Adrian Bridgett <[email protected]>
[AL] Adrian Lopez <[email protected]>
[CHL] Charles Longeau <[email protected]>
[FD] Frank DENIS, a.k.a.
Jedi/Sector One, a.k.a.
[FD] Frank DENIS, a.k.a.
Jedi/Sector One, a.k.a.
DJ Chrysalis <[email protected]>
[JB] Jean-Baptiste
[KK] Kresimir Kukulj <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.enduser
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ followed by "make" and "sudo make install" as before.

A test directory is included so that you may familiarise yourself
with the way fdupes operates. You may test the program before
installing it by issuing a command such as "./fdupes testdir"
installing it by issuing a command such as "./fdupes testdir"
or "./fdupes -r testdir", just to name a couple of examples. Refer
to the documentation for information on valid options.
14 changes: 7 additions & 7 deletions README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Introduction
--------------------------------------------------------------------
FDUPES is a program for identifying duplicate files residing
within specified directories.
within specified directories.


Usage
Expand Down Expand Up @@ -92,10 +92,10 @@ subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ char *getworkingdirectory()
char *result;
char *new_result;
char *cwd;

size = 1024;

result = 0;
Expand Down
2 changes: 2 additions & 0 deletions errormsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ void errormsg(char *message, ...)

fprintf(stderr, "\r%40s\r%s: ", "", program_name);
vfprintf(stderr, message, ap);

va_end(ap);
}
Loading