From f3ad2a67fe3f280edb18f3a17b8b4b030cf6889a Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 9 Aug 2022 15:39:27 +0200 Subject: [PATCH] Add variable to size variable with edit_int64() --- bacula/src/baconfig.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bacula/src/baconfig.h b/bacula/src/baconfig.h index 59542bd63..e0ee4731a 100644 --- a/bacula/src/baconfig.h +++ b/bacula/src/baconfig.h @@ -238,6 +238,13 @@ void InitWinAPIWrapper(); */ #define DEFAULT_NETWORK_BUFFER_SIZE (64 * 1024) + +/* + * Size of a buffer when editing numbers via edit_uint64/edit_int + * Normally, it's around 20. + */ +#define SIZE_EDIT_INT 50 + /** * Tape label types -- stored in catalog */ -- 2.47.3