diff options
author | Phil Hord <hordp@cisco.com> | 2013-06-18 13:44:58 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-18 11:05:51 -0700 |
commit | 09b7e2204a8e41307192c800162e438ec09ddd2c (patch) | |
tree | 664db8a93d2dd45b3ef8c66ec2622631917b96bb /transport.c | |
parent | 04a74b6cfa5ef4870263f84ac94a488d9f2ef14a (diff) | |
download | git-09b7e2204a8e41307192c800162e438ec09ddd2c.tar.gz |
fix "builtin-*" references to be "builtin/*"
Documentation and some comments still refer to files in builtin/
as 'builtin-*.[cho]'. Update these to show the correct location.
Signed-off-by: Phil Hord <hordp@cisco.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Assisted-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.c')
-rw-r--r-- | transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.c b/transport.c index b9306ef645..e3b33520cb 100644 --- a/transport.c +++ b/transport.c @@ -1153,7 +1153,7 @@ int transport_fetch_refs(struct transport *transport, struct ref *refs) * then local and remote refs are likely to still be equal. * Just feed them all to the fetch method in that case. * This condition shouldn't be met in a non-deepening fetch - * (see builtin-fetch.c:quickfetch()). + * (see builtin/fetch.c:quickfetch()). */ heads = xmalloc(nr_refs * sizeof(*heads)); for (rm = refs; rm; rm = rm->next) |