Increased text size

SVN revision: 110
This commit is contained in:
Stefan Ritt 2002-06-12 07:52:41 +00:00
parent d2e851d248
commit ef7dc78014

7
elog.c
View File

@ -6,6 +6,9 @@
Contents: Electronic logbook utility Contents: Electronic logbook utility
$Log$ $Log$
Revision 1.6 2002/06/12 07:52:41 midas
Increased text size
Revision 1.5 2002/06/11 12:01:45 midas Revision 1.5 2002/06/11 12:01:45 midas
Added -s for subdirectory Added -s for subdirectory
@ -47,6 +50,8 @@ typedef int INT;
#define NAME_LENGTH 100 #define NAME_LENGTH 100
#define MAX_N_ATTR 20 #define MAX_N_ATTR 20
#define TEXT_SIZE 100000
int verbose; int verbose;
/*------------------------------------------------------------------*/ /*------------------------------------------------------------------*/
@ -338,7 +343,7 @@ char host_name[256], boundary[80], str[80], *p;
int main(int argc, char *argv[]) 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 host_name[256], logbook[32], textfile[256], password[80], subdir[256];
char *buffer[MAX_ATTACHMENTS], attachment[MAX_ATTACHMENTS][256]; char *buffer[MAX_ATTACHMENTS], attachment[MAX_ATTACHMENTS][256];
INT att_size[MAX_ATTACHMENTS]; INT att_size[MAX_ATTACHMENTS];