diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 01:44:14 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 01:44:14 +0100 |
commit | 687f8aeb16ab38fffca5ac8974ea998de2710db4 (patch) | |
tree | 9e56e1a2ce5819ff2b41f6907a595b558247c05e /FICS | |
parent | bd686eb9f380f461259798dc92303d60980da2c9 (diff) |
Deleted trailing whitespace characters
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/utils.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/FICS/utils.c b/FICS/utils.c index ae70e80..bb8ac6a 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -176,7 +176,7 @@ PUBLIC int mail_file_to_address(char *addr, char *subj, char *fname) if (!fp) return -1; #ifdef SENDMAILPROG - fprintf(fp, "To: %s\nSubject: %s\n", addr, subj); + fprintf(fp, "To: %s\nSubject: %s\n", addr, subj); file_fp = fopen(fname, "r"); if (!file_fp) return -1; @@ -399,10 +399,10 @@ PUBLIC int psend_file(int p, char *dir, char *file) return 0; } -/* +/* * Marsalis added on 8/27/95 so that [next] does not * appear in the logout process for those that have - * a short screen height. (Fixed due to complaint + * a short screen height. (Fixed due to complaint * in Bug's messages). */ PUBLIC int psend_logoutfile(int p, char *dir, char *file) @@ -410,7 +410,7 @@ PUBLIC int psend_logoutfile(int p, char *dir, char *file) FILE *fp; char tmp[MAX_LINE_SIZE]; char fname[MAX_FILENAME_SIZE]; - + if (parray[p].last_file) rfree(parray[p].last_file); parray[p].last_file = NULL; @@ -651,14 +651,14 @@ PUBLIC char *fix_time(char *old_time) { char i; sscanf(old_time, "%s %s %s", day, month, date); - + if (date[2] != ',') { i = date[0]; date[0] = '0'; date[1] = i; } date[2] = '\0'; - + sprintf (new_time, "%s, %s %s", day, month, date); return new_time; |