From ef7dc78014aa6be00aa94dc88b0aaaec7238a347 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Wed, 12 Jun 2002 07:52:41 +0000 Subject: [PATCH] Increased text size SVN revision: 110 --- elog.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/elog.c b/elog.c index 084993d4..e17fab8b 100755 --- a/elog.c +++ b/elog.c @@ -6,6 +6,9 @@ Contents: Electronic logbook utility $Log$ + Revision 1.6 2002/06/12 07:52:41 midas + Increased text size + Revision 1.5 2002/06/11 12:01:45 midas Added -s for subdirectory @@ -47,6 +50,8 @@ typedef int INT; #define NAME_LENGTH 100 #define MAX_N_ATTR 20 +#define TEXT_SIZE 100000 + int verbose; /*------------------------------------------------------------------*/ @@ -338,7 +343,7 @@ char host_name[256], boundary[80], str[80], *p; int main(int argc, char *argv[]) { -char str[1000], text[10000], uname[80], upwd[80]; +char str[1000], text[TEXT_SIZE], uname[80], upwd[80]; char host_name[256], logbook[32], textfile[256], password[80], subdir[256]; char *buffer[MAX_ATTACHMENTS], attachment[MAX_ATTACHMENTS][256]; INT att_size[MAX_ATTACHMENTS];