Tweak++: freq no longer uppercased in Linux

This commit is contained in:
Jacobo Tarrío 2000-08-12 19:05:40 +00:00
parent 009d791042
commit b2953adfd0
2 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,9 @@ ______________________________________________________________________
- Fixed small bug in console shiftstate code under Linux. - Fixed small bug in console shiftstate code under Linux.
+ Filenames in file requests are not converted to uppercase in Linux
any more.
______________________________________________________________________ ______________________________________________________________________
Notes for GoldED+ 1.1.4.5, June 18 2000 Notes for GoldED+ 1.1.4.5, June 18 2000

View File

@ -528,7 +528,9 @@ void CreateFileMsgs(int mode, GMsg* msg) {
); );
} }
sprintf(subj, "%s%s%s%s%s ", fspec[x].delsent ? "^" : "", fspec[x].path, fspec[x].fblk ? (fspec[x].fblk[m].name ? fspec[x].fblk[m].name : "") : "", *fspec[x].password ? " " : "", fspec[x].password); sprintf(subj, "%s%s%s%s%s ", fspec[x].delsent ? "^" : "", fspec[x].path, fspec[x].fblk ? (fspec[x].fblk[m].name ? fspec[x].fblk[m].name : "") : "", *fspec[x].password ? " " : "", fspec[x].password);
#if not defined(__UNIX__)
strupr(subj); strupr(subj);
#endif
if((strlen(buf) + strlen(subj)) > 71) { if((strlen(buf) + strlen(subj)) > 71) {