From f5da2ea6b34b79014c8077d8b5ef0bef9cdedd85 Mon Sep 17 00:00:00 2001 From: Jeong Han Lee Date: Wed, 29 Aug 2018 22:27:07 +0200 Subject: [PATCH] Do not limit to 80 chars when the link can be 256 by @krisztianloki --- src/StreamEpics.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/StreamEpics.cc b/src/StreamEpics.cc index 296e9f3..522467e 100644 --- a/src/StreamEpics.cc +++ b/src/StreamEpics.cc @@ -534,11 +534,11 @@ long streamInitRecord(dbCommon* record, const struct link *ioLink, streamIoFunction readData, streamIoFunction writeData) { long status; - char filename[80]; - char protocol[80]; - char busname[80]; + char filename[256]; + char protocol[256]; + char busname[256]; int addr = -1; - char busparam[80]; + char busparam[256]; memset(busparam, 0 ,sizeof(busparam)); debug("streamInitRecord(%s): SEVR=%d\n", record->name, record->sevr);