[ovs-dev] [PATCH] ovn-northd.8: Correct syntax for OVN strings.

Ben Pfaff blp at ovn.org
Tue Nov 24 04:24:02 UTC 2015


On Mon, Nov 23, 2015 at 01:37:17PM -0500, Russell Bryant wrote:
> On 11/23/2015 12:37 PM, Ben Pfaff wrote:
> > Backslashes are necessary if you put OVN syntax inside a quoted string, but
> > it's not part of the syntax itself and might confuse readers.
> > 
> > Signed-off-by: Ben Pfaff <blp at ovn.org>
> > ---
> >  ovn/northd/ovn-northd.8.xml | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/ovn/northd/ovn-northd.8.xml b/ovn/northd/ovn-northd.8.xml
> > index e7dec72..865c727 100644
> > --- a/ovn/northd/ovn-northd.8.xml
> > +++ b/ovn/northd/ovn-northd.8.xml
> > @@ -340,7 +340,7 @@ ip4.dst = ip4.src;
> >  ip4.src = <var>S</var>;
> >  ip.ttl = 255;
> >  icmp4.type = 0;
> > -inport = \"\"; /* Allow sending out inport. */
> > +inport = ""; /* Allow sending out inport. */
> >  next;
> >          </pre>
> >  
> > @@ -370,7 +370,7 @@ arp.sha = <var>E</var>;
> >  arp.tpa = arp.spa;
> >  arp.spa = <var>A</var>;
> >  outport = <var>P</var>;
> > -inport = \"\"; /* Allow sending out inport. */
> > +inport = ""; /* Allow sending out inport. */
> >  output;
> >          </pre>
> >        </li>
> > 
> 
> Acked-by: Russell Bryant <russell at ovn.org>

Thanks Russell, I applied this to master.



More information about the dev mailing list