diff options
-rw-r--r-- | lib/Makefile.am | 1 | ||||
-rw-r--r-- | lib/packet.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 7d047c0..d169615 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -6,6 +6,7 @@ SUBDIRS = . examples include INCLUDES = -I$(srcdir)/include lib_LTLIBRARIES = libradsec.la + libradsec_la_SOURCES = \ attr.c \ conf.c \ diff --git a/lib/packet.c b/lib/packet.c index b73c608..7644646 100644 --- a/lib/packet.c +++ b/lib/packet.c @@ -62,7 +62,7 @@ _do_send (struct rs_packet *pkt) vp = paircreate (PW_MESSAGE_AUTHENTICATOR, PW_TYPE_OCTETS); if (!vp) return rs_err_conn_push_fl (pkt->conn, RSE_NOMEM, __FILE__, __LINE__, - "rad_encode: %s", fr_strerror ()); + "paircreate: %s", fr_strerror ()); pairadd (&pkt->rpkt->vps, vp); if (rad_encode (pkt->rpkt, NULL, pkt->conn->active_peer->secret)) |