summaryrefslogtreecommitdiff
path: root/lib/prefix.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/prefix.c')
-rw-r--r--lib/prefix.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/prefix.c b/lib/prefix.c
index 0cc759bb7c..9c228cf954 100644
--- a/lib/prefix.c
+++ b/lib/prefix.c
@@ -14,10 +14,9 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
- * You should have received a copy of the GNU General Public License
- * along with GNU Zebra; see the file COPYING. If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <zebra.h>
@@ -252,12 +251,14 @@ safi2str(safi_t safi)
return "unicast";
case SAFI_MULTICAST:
return "multicast";
- case SAFI_ENCAP:
- return "encap";
case SAFI_MPLS_VPN:
return "vpn";
+ case SAFI_ENCAP:
+ return "encap";
case SAFI_EVPN:
return "evpn";
+ case SAFI_LABELED_UNICAST:
+ return "labeled-unicast";
}
return NULL;
}