=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/diff/diff.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- src/usr.bin/diff/diff.c 2003/07/21 21:59:58 1.30 +++ src/usr.bin/diff/diff.c 2003/07/21 22:57:16 1.31 @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.30 2003/07/21 21:59:58 henning Exp $ */ +/* $OpenBSD: diff.c,v 1.31 2003/07/21 22:57:16 millert Exp $ */ /* * Copyright (c) 2003 Todd C. Miller @@ -21,7 +21,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: diff.c,v 1.30 2003/07/21 21:59:58 henning Exp $"; +static const char rcsid[] = "$OpenBSD: diff.c,v 1.31 2003/07/21 22:57:16 millert Exp $"; #endif /* not lint */ #include @@ -335,11 +335,11 @@ path2, entry ? entry : ""); break; case D_MISMATCH1: - printf("File %s/%s is a directory while file %s/%s is a file\n", + printf("File %s%s is a directory while file %s%s is a regular file\n", path1, entry ? entry : "", path2, entry ? entry : ""); break; case D_MISMATCH2: - printf("File %s/%s is a file while file %s/%s is a directory\n", + printf("File %s%s is a regular file while file %s%s is a directory\n", path1, entry ? entry : "", path2, entry ? entry : ""); break; }