given that i have run this command: git config --global user.name "John 
Doe"     
then why when i send an email via git the upper cases become lower case? 
that is, the recipient gets the email with john doe and not John Doe.
 git config user.name 
and
git config --list

outputs in upper case
so, why that happens and how to solve it?
+++++++++++++++++++
furthermore, 

i have this file

+++++++++++++++++++++++++++++++++++++++++++++++
>From b89f0290a85d7720a98b7374e2f6f5101fe2e2fa Mon Sep 17 00:00:00 2001
From: John Doe<x...@gmail.com>
Date: Tue, 12 Apr 2016 21:53:02 +0100
Subject: [PATCH v3] va: check null context in vlVaDestroyContext

---
 src/gallium/state_trackers/va/context.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/gallium/state_trackers/va/context.c 
b/src/gallium/state_trackers/va/context.c
index b25c381..932717d 100644
--- a/src/gallium/state_trackers/va/context.c
+++ b/src/gallium/state_trackers/va/context.c
@@ -283,6 +283,10 @@ vlVaDestroyContext(VADriverContextP ctx, VAContextID 
context_id)
    drv = VL_VA_DRIVER(ctx);
    pipe_mutex_lock(drv->mutex);
    context = handle_table_get(drv->htab, context_id);
+   if (!context) {
+      pipe_mutex_unlock(drv->mutex);
+      return VA_STATUS_ERROR_INVALID_CONTEXT;
+  }
 
    if (context->decoder) {
       if (u_reduce_video_profile(context->decoder->profile) ==
-- 
1.9.1
++++++++++++++++++++++++++++++++++++++++++++++

generated by this command : git format-patch -1 

and i want to always add one more line, like the following:
+++++++++++++++++++++++++++++++++++++++++++++++
>From b89f0290a85d7720a98b7374e2f6f5101fe2e2fa Mon Sep 17 00:00:00 2001
From: John Doe <x...@gmail.com>
Date: Tue, 12 Apr 2016 21:53:02 +0100
Subject: [PATCH v3] va: check null context in vlVaDestroyContext

*Signed-off-by: John Doe <x...@gmail.com>*
---
 src/gallium/state_trackers/va/context.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/gallium/state_trackers/va/context.c 
b/src/gallium/state_trackers/va/context.c
index b25c381..932717d 100644
--- a/src/gallium/state_trackers/va/context.c
+++ b/src/gallium/state_trackers/va/context.c
@@ -283,6 +283,10 @@ vlVaDestroyContext(VADriverContextP ctx, VAContextID 
context_id)
    drv = VL_VA_DRIVER(ctx);
    pipe_mutex_lock(drv->mutex);
    context = handle_table_get(drv->htab, context_id);
+   if (!context) {
+      pipe_mutex_unlock(drv->mutex);
+      return VA_STATUS_ERROR_INVALID_CONTEXT;
+  }
 
    if (context->decoder) {
       if (u_reduce_video_profile(context->decoder->profile) ==
-- 
1.9.1
++++++++++++++++++++++++++++++++++++++++++++++
that is, that line that is bolded. 
so, i always want to add that line to each file generated by that command. 
right now i do that by editing manually the file, but i would like to do 
just one time and have the "Signed-off-by:..." line for ever. 

i thank u in advance for the help

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to