sha1_name.c: rename to use dash in file name

This is more consistent with the project style. The majority of Git's source files use dashes in preference to underscores in their file names. Signed-off-by: Stefan Beller <sbeller@google.com>

Stefan Beller committed Apr 10, 2018 at 14:26 UTC e5e5e08832f7c4d581c0c70542e61235d21a8067
4 files changed +3 -3
Makefile
+1 -1
@@ -901,7 +901,7 @@ LIB_OBJS += setup.o
901 LIB_OBJS += sha1-array.o
902 LIB_OBJS += sha1-lookup.o
903 LIB_OBJS += sha1_file.o
904 -LIB_OBJS += sha1_name.o
904 +LIB_OBJS += sha1-name.o
905 LIB_OBJS += shallow.o
906 LIB_OBJS += sideband.o
907 LIB_OBJS += sigchain.o
list-objects-filter.c
+1 -1
@@ -19,7 +19,7 @@
19 * in the traversal (until we mark it SEEN). This is a way to
20 * let us silently de-dup calls to show() in the caller. This
21 * is subtly different from the "revision.h:SHOWN" and the
22 - * "sha1_name.c:ONELINE_SEEN" bits. And also different from
22 + * "sha1-name.c:ONELINE_SEEN" bits. And also different from
23 * the non-de-dup usage in pack-bitmap.c
24 */
25 #define FILTER_SHOWN_BUT_REVISIT (1<<21)
object.h
+1 -1
@@ -37,7 +37,7 @@ struct object_array {
37 * bundle.c: 16
38 * http-push.c: 16-----19
39 * commit.c: 16-----19
40 - * sha1_name.c: 20
40 + * sha1-name.c: 20
41 * list-objects-filter.c: 21
42 * builtin/fsck.c: 0--3
43 * builtin/index-pack.c: 2021
sha1-name.c renamed