Re: [PATCH 1/2] wrapper.c: remove unused git_mkstemp() function

2017-02-28 Thread Jeff King
On Tue, Feb 28, 2017 at 01:24:10AM +, Ramsay Jones wrote: > The last caller of git_mkstemp() was removed in commit 6fec0a89 > ("verify_signed_buffer: use tempfile object", 16-06-2016). Since > the introduction of the 'tempfile' APIs, along with git_mkstemp_mode, > it is unlikely that new calle

[PATCH 1/2] wrapper.c: remove unused git_mkstemp() function

2017-02-27 Thread Ramsay Jones
The last caller of git_mkstemp() was removed in commit 6fec0a89 ("verify_signed_buffer: use tempfile object", 16-06-2016). Since the introduction of the 'tempfile' APIs, along with git_mkstemp_mode, it is unlikely that new callers will materialize. Remove the dead code. Signed-off-by: Ramsay Jone