vty: Fix typo in the state creation

This got introduced in 2d6ad13d8daf860595e6d4025861e122ce574871
and I thought that our vty tests would have caught such mistakes.
diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c
index bb19a31..40daba1 100644
--- a/src/vty/logging_vty.c
+++ b/src/vty/logging_vty.c
@@ -659,7 +659,7 @@
 
 	vty_out(vty, "  logging color %u%s", tgt->use_color ? 1 : 0,
 		VTY_NEWLINE);
-	vty_out(vty, "  logging print cateyory %d%s",
+	vty_out(vty, "  logging print category %d%s",
 		tgt->print_ext_timestamp ? 1 : 0, VTY_NEWLINE);
 	if (tgt->print_ext_timestamp)
 		vty_out(vty, "  logging print extended-timestamp 1%s", VTY_NEWLINE);