git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name.
@ 2014-03-02  2:43 Sun He
  2014-03-02  3:59 ` Eric Sunshine
  0 siblings, 1 reply; 3+ messages in thread
From: Sun He @ 2014-03-02  2:43 UTC (permalink / raw)
  To: git; +Cc: gister, Sun He

Signed-off-by: Sun He <sunheehnus@gmail.com>
---

 As tmpname is used without initialization, it should be a mistake.

 builtin/pack-objects.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
index c733379..4922ce5 100644
--- a/builtin/pack-objects.c
+++ b/builtin/pack-objects.c
@@ -823,7 +823,7 @@ static void write_pack_file(void)
 				utb.modtime = --last_mtime;
 				if (utime(pack_tmp_name, &utb) < 0)
 					warning("failed utime() on %s: %s",
-						tmpname, strerror(errno));
+						pack_tmp_name, strerror(errno));
 			}
 
 			/* Enough space for "-<sha-1>.pack"? */
-- 
1.9.0.138.g2de3478.dirty

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name.
  2014-03-02  2:43 [PATCH v2] Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name Sun He
@ 2014-03-02  3:59 ` Eric Sunshine
  2014-03-02  7:18   ` He Sun
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Sunshine @ 2014-03-02  3:59 UTC (permalink / raw)
  To: Sun He; +Cc: Git List, gister

On Sat, Mar 1, 2014 at 9:43 PM, Sun He <sunheehnus@gmail.com> wrote:
> Subject: Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name.

The subject should be a short summary of the change, and the rest of
the commit message before the "---" line provides extra detail
explaining the change.

> Signed-off-by: Sun He <sunheehnus@gmail.com>
> ---
>
>  As tmpname is used without initialization, it should be a mistake.

This is valid information for the commit message above the "---" line.
So, your full commit message might say something like this:

    Subject: write_pack_file: use correct variable in diagnostic

    'pack_tmp_name' is the subject of the utime() check, so report
    it in the warning, not the uninitialized 'tmpname'.

>  builtin/pack-objects.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
> index c733379..4922ce5 100644
> --- a/builtin/pack-objects.c
> +++ b/builtin/pack-objects.c
> @@ -823,7 +823,7 @@ static void write_pack_file(void)
>                                 utb.modtime = --last_mtime;
>                                 if (utime(pack_tmp_name, &utb) < 0)
>                                         warning("failed utime() on %s: %s",
> -                                               tmpname, strerror(errno));
> +                                               pack_tmp_name, strerror(errno));
>                         }
>
>                         /* Enough space for "-<sha-1>.pack"? */
> --
> 1.9.0.138.g2de3478.dirty

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name.
  2014-03-02  3:59 ` Eric Sunshine
@ 2014-03-02  7:18   ` He Sun
  0 siblings, 0 replies; 3+ messages in thread
From: He Sun @ 2014-03-02  7:18 UTC (permalink / raw)
  To: Eric Sunshine, git, Junio C Hamano

2014-03-02 11:59 GMT+08:00 Eric Sunshine <sunshine@sunshineco.com>:
> On Sat, Mar 1, 2014 at 9:43 PM, Sun He <sunheehnus@gmail.com> wrote:
>> Subject: Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name.
>
> The subject should be a short summary of the change, and the rest of
> the commit message before the "---" line provides extra detail
> explaining the change.
>

OK, got it.
Thank you very much.

>> Signed-off-by: Sun He <sunheehnus@gmail.com>
>> ---
>>
>>  As tmpname is used without initialization, it should be a mistake.
>
> This is valid information for the commit message above the "---" line.
> So, your full commit message might say something like this:
>
>     Subject: write_pack_file: use correct variable in diagnostic
>
>     'pack_tmp_name' is the subject of the utime() check, so report
>     it in the warning, not the uninitialized 'tmpname'.
>

Thank you for your suggestion, I will modify it right now. :-)

>>  builtin/pack-objects.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
>> index c733379..4922ce5 100644
>> --- a/builtin/pack-objects.c
>> +++ b/builtin/pack-objects.c
>> @@ -823,7 +823,7 @@ static void write_pack_file(void)
>>                                 utb.modtime = --last_mtime;
>>                                 if (utime(pack_tmp_name, &utb) < 0)
>>                                         warning("failed utime() on %s: %s",
>> -                                               tmpname, strerror(errno));
>> +                                               pack_tmp_name, strerror(errno));
>>                         }
>>
>>                         /* Enough space for "-<sha-1>.pack"? */
>> --
>> 1.9.0.138.g2de3478.dirty

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-03-02  7:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02  2:43 [PATCH v2] Replace tmpname with pack_tmp_name in warning. The developer mistook tmpname for pack_tmp_name Sun He
2014-03-02  3:59 ` Eric Sunshine
2014-03-02  7:18   ` He Sun

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).