diff options
author | whichbug <whichbug@github.com> | 2022-02-11 04:49:41 +0100 |
---|---|---|
committer | whichbug <whichbug@github.com> | 2022-02-22 21:27:30 +0100 |
commit | ac3133450de12ba86c051265fc0f1b12bc57b40c (patch) | |
tree | 0e02aac6f1277627c326c0d4d373af88887d4e30 /lib/subdir.am | |
parent | Merge pull request #8890 from rameshabhinay/ospf6_auth_trailer (diff) | |
download | frr-ac3133450de12ba86c051265fc0f1b12bc57b40c.tar.xz frr-ac3133450de12ba86c051265fc0f1b12bc57b40c.zip |
isisd: fix #10505 using base64 encoding
Using base64 instead of the raw string to encode
the binary data.
Signed-off-by: whichbug <whichbug@github.com>
Diffstat (limited to 'lib/subdir.am')
-rw-r--r-- | lib/subdir.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/subdir.am b/lib/subdir.am index 648ab7f14..f8f82f276 100644 --- a/lib/subdir.am +++ b/lib/subdir.am @@ -8,6 +8,7 @@ lib_libfrr_la_LIBADD = $(LIBCAP) $(UNWIND_LIBS) $(LIBYANG_LIBS) $(LUA_LIB) $(UST lib_libfrr_la_SOURCES = \ lib/agg_table.c \ lib/atomlist.c \ + lib/base64.c \ lib/bfd.c \ lib/buffer.c \ lib/checksum.c \ @@ -177,6 +178,7 @@ clippy_scan += \ pkginclude_HEADERS += \ lib/agg_table.h \ lib/atomlist.h \ + lib/base64.h \ lib/bfd.h \ lib/bitfield.h \ lib/buffer.h \ |