environment: rename 'template' variables

Rename C++ keyword in order to bring the codebase closer to being able
to be compiled with a C++ compiler.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brandon Williams
2018-02-14 10:59:53 -08:00
committed by Junio C Hamano
parent fa0fccae6a
commit a63b5fca9b
2 changed files with 8 additions and 8 deletions

View File

@ -1673,7 +1673,7 @@ struct pack_entry {
* usual "XXXXXX" trailer, and the resulting filename is written into the * usual "XXXXXX" trailer, and the resulting filename is written into the
* "template" buffer. Returns the open descriptor. * "template" buffer. Returns the open descriptor.
*/ */
extern int odb_mkstemp(struct strbuf *template, const char *pattern); extern int odb_mkstemp(struct strbuf *temp_filename, const char *pattern);
/* /*
* Create a pack .keep file named "name" (which should generally be the output * Create a pack .keep file named "name" (which should generally be the output

View File

@ -247,7 +247,7 @@ char *get_object_directory(void)
return the_repository->objectdir; return the_repository->objectdir;
} }
int odb_mkstemp(struct strbuf *template, const char *pattern) int odb_mkstemp(struct strbuf *temp_filename, const char *pattern)
{ {
int fd; int fd;
/* /*
@ -255,16 +255,16 @@ int odb_mkstemp(struct strbuf *template, const char *pattern)
* restrictive except to remove write permission. * restrictive except to remove write permission.
*/ */
int mode = 0444; int mode = 0444;
git_path_buf(template, "objects/%s", pattern); git_path_buf(temp_filename, "objects/%s", pattern);
fd = git_mkstemp_mode(template->buf, mode); fd = git_mkstemp_mode(temp_filename->buf, mode);
if (0 <= fd) if (0 <= fd)
return fd; return fd;
/* slow path */ /* slow path */
/* some mkstemp implementations erase template on failure */ /* some mkstemp implementations erase temp_filename on failure */
git_path_buf(template, "objects/%s", pattern); git_path_buf(temp_filename, "objects/%s", pattern);
safe_create_leading_directories(template->buf); safe_create_leading_directories(temp_filename->buf);
return xmkstemp_mode(template->buf, mode); return xmkstemp_mode(temp_filename->buf, mode);
} }
int odb_pack_keep(const char *name) int odb_pack_keep(const char *name)