quic: fix wrong condition in update_fifo_size 90/22590/1
authorMathiasRaoul <mathias.raoul@gmail.com>
Mon, 7 Oct 2019 15:41:37 +0000 (15:41 +0000)
committerMathiasRaoul <mathias.raoul@gmail.com>
Mon, 7 Oct 2019 15:41:37 +0000 (15:41 +0000)
Type: fix

Signed-off-by: MathiasRaoul <mathias.raoul@gmail.com>
Change-Id: If371cde9412be29634164830c58634da248ad0ae

src/plugins/quic/quic.c

index 96416a7..4b2bbef 100644 (file)
@@ -2106,7 +2106,7 @@ quic_update_fifo_size ()
   segment_manager_props_t *seg_mgr_props =
     application_get_segment_manager_properties (qm->app_index);
 
-  if (seg_mgr_props)
+  if (!seg_mgr_props)
     {
       clib_warning
        ("error while getting segment_manager_props_t, can't update fifo-size");