Re: [PATCH 03/14] lockfile: remove some redundant functions

2015-06-10 Thread Junio C Hamano
Michael Haggerty mhag...@alum.mit.edu writes: Remove the following functions and rewrite their callers to use the equivalent tempfile functions directly: * fdopen_lock_file() - fdopen_tempfile() * reopen_lock_file() - reopen_tempfile() * close_lock_file() - close_tempfile() Hmph, My

Re: [PATCH 03/14] lockfile: remove some redundant functions

2015-06-10 Thread Johannes Sixt
Am 10.06.2015 um 19:40 schrieb Junio C Hamano: Michael Haggerty mhag...@alum.mit.edu writes: Remove the following functions and rewrite their callers to use the equivalent tempfile functions directly: * fdopen_lock_file() - fdopen_tempfile() * reopen_lock_file() - reopen_tempfile() *

[PATCH 03/14] lockfile: remove some redundant functions

2015-06-08 Thread Michael Haggerty
Remove the following functions and rewrite their callers to use the equivalent tempfile functions directly: * fdopen_lock_file() - fdopen_tempfile() * reopen_lock_file() - reopen_tempfile() * close_lock_file() - close_tempfile() Signed-off-by: Michael Haggerty mhag...@alum.mit.edu ---