Skip to content

Commit

Permalink
Fix termination of ENDFETCH command, part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
chad-earthscope committed Dec 15, 2024
1 parent 5cf63bd commit b314230
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2024.350: v4.1.2
2024.350: v4.1.3
- Fix termination of ENDFETCH command.

2024.333: v4.1.1
Expand Down
2 changes: 1 addition & 1 deletion libslink.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion network.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit b314230

Please sign in to comment.