diff --git a/ChangeLog b/ChangeLog index d74e23a..4968786 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -2024.350: v4.1.2 +2024.350: v4.1.3 - Fix termination of ENDFETCH command. 2024.333: v4.1.1 diff --git a/libslink.h b/libslink.h index c1420c9..bbed2b2 100644 --- a/libslink.h +++ b/libslink.h @@ -31,7 +31,7 @@ extern "C" { #define LIBSLINK_RELEASE "2024.350" /**< libslink release date */ #define LIBSLINK_VERSION_MAJOR 4 /**< libslink major version */ #define LIBSLINK_VERSION_MINOR 1 /**< libslink minor version */ -#define LIBSLINK_VERSION_PATCH 2 /**< libslink patch version */ +#define LIBSLINK_VERSION_PATCH 3 /**< libslink patch version */ #define LIBSLINK_STRINGIFY(a) LIBSLINK_XSTRINGIFY(a) #define LIBSLINK_XSTRINGIFY(a) #a /** @def LIBSLINK_VERSION diff --git a/network.c b/network.c index ffc4d07..70fe8bc 100644 --- a/network.c +++ b/network.c @@ -2032,7 +2032,7 @@ negotiate_v4 (SLCD *slconn) char v4selector[32] = {0}; char start_time[31] = {0}; char end_time[31] = {0}; - char sendstr[10]; /* A buffer for small command strings */ + char sendstr[32]; /* A buffer for small command strings */ char readbuf[200]; /* A buffer for responses */ SLstream *curstream;