=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/diff/diff.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -r1.56 -r1.57 --- src/usr.bin/diff/diff.c 2010/02/21 15:24:01 1.56 +++ src/usr.bin/diff/diff.c 2010/07/16 23:27:58 1.57 @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.56 2010/02/21 15:24:01 sobrado Exp $ */ +/* $OpenBSD: diff.c,v 1.57 2010/07/16 23:27:58 ray Exp $ */ /* * Copyright (c) 2003 Todd C. Miller @@ -265,7 +265,7 @@ err(2, "%s", argv[1]); } print_status(diffreg(argv[0], argv[1], dflags), argv[0], argv[1], - NULL); + ""); } exit(status); } @@ -360,39 +360,37 @@ break; case D_COMMON: printf("Common subdirectories: %s%s and %s%s\n", - path1, entry ? entry : "", path2, entry ? entry : ""); + path1, entry, path2, entry); break; case D_BINARY: printf("Binary files %s%s and %s%s differ\n", - path1, entry ? entry : "", path2, entry ? entry : ""); + path1, entry, path2, entry); break; case D_DIFFER: if (diff_format == D_BRIEF) printf("Files %s%s and %s%s differ\n", - path1, entry ? entry : "", - path2, entry ? entry : ""); + path1, entry, path2, entry); break; case D_SAME: if (sflag) printf("Files %s%s and %s%s are identical\n", - path1, entry ? entry : "", - path2, entry ? entry : ""); + path1, entry, path2, entry); break; case D_MISMATCH1: printf("File %s%s is a directory while file %s%s is a regular file\n", - path1, entry ? entry : "", path2, entry ? entry : ""); + path1, entry, path2, entry); break; case D_MISMATCH2: printf("File %s%s is a regular file while file %s%s is a directory\n", - path1, entry ? entry : "", path2, entry ? entry : ""); + path1, entry, path2, entry); break; case D_SKIPPED1: printf("File %s%s is not a regular file or directory and was skipped\n", - path1, entry ? entry : ""); + path1, entry); break; case D_SKIPPED2: printf("File %s%s is not a regular file or directory and was skipped\n", - path2, entry ? entry : ""); + path2, entry); break; } }