search for: signing_off_a_patch

Displaying 2 results from an estimated 2 matches for "signing_off_a_patch".

2013 Aug 08
0
Bug#718898: Bug#718898: cut no longer works with newline as delimiter
...incorrect. Here is a hopefully correct patch. > With only one pipe in the pipeline. Hi Bob, Any chance you could send this patch to the upstream xen-devel at lists.xen.org mailing list with a Signed-off-by line to indicate acceptance of the DCO http://wiki.xen.org/wiki/Submitting_Xen_Patches#Signing_off_a_patch. Thanks, Ian. > > --- vif-bridge.orig 2013-08-07 20:01:57.240366430 -0600 > +++ vif-bridge 2013-08-07 22:54:12.076993655 -0600 > @@ -37,8 +37,7 @@ > > if [ -z "$bridge" ] > then > - bridge=$(brctl show | cut -d " > -" -f 2 | cut -f 1) > + b...
2013 Aug 08
3
Bug#718898: cut no longer works with newline as delimiter
Bob Proulx wrote: > Here is a patch that I believe should fix the problem. I will also > attach it so that there won't be any mailer problems with the > transport of it. And I broke it in the editing of it. Drat! > + bridge=$(brctl show | | awk 'NR==2{print$1}') Which is obviously incorrect. Here is a hopefully correct patch. With only one pipe in the pipeline. ---