diff --git a/misc/sslogo.png b/misc/sslogo.png new file mode 100644 index 0000000..9166b67 Binary files /dev/null and b/misc/sslogo.png differ diff --git a/src/deps.h b/src/deps.h index 47bdafe..8a23612 100644 --- a/src/deps.h +++ b/src/deps.h @@ -52,6 +52,7 @@ #define TOKEN_STR "%" #define TOKEN_BQ '`' #define NULLBYTE '\0' +#define NEWLINE '\n' #define ENCOFFSET 3 #define ENCSTEPODD 2 #define ENCSTEPEVEN 2 diff --git a/src/functions.c b/src/functions.c index 154e687..c89dd4a 100644 --- a/src/functions.c +++ b/src/functions.c @@ -608,7 +608,7 @@ char *process_line(char *line) while(fgets(read_line, sizeof(read_line), read_file) != NULL) { - sprintf(dynfile, "%s", read_line); + strcat(dynfile, read_line); } if(read_size <= MAX_READFILE_LEN)