Changeset 1753 for trunk/dll/init.c


Ignore:
Timestamp:
Mar 2, 2014, 7:58:53 PM (12 years ago)
Author:
Gregg Young
Message:

Fixed typo that reversed the function of the saymsg dialog g/bzip check. Added option to suppress message regarding missing bzip2.exe or gzip.exe on TAR.B/GZ archives. Ticket 526

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/init.c

    r1750 r1753  
    126126  01 Mar 14 JBS Ticket #524: Made "searchapath" thread-safe. Function names and signatures were changed.
    127127                So calls to these functions had to be changed.
     128  02 Mar 14 GKY Fixed typo that reversed the function of the saymsg dialog g/bzip check.
     129                Added option to suppress message regarding missing bzip2.exe
     130                or gzip.exe on TAR.B/GZ archives.
    128131
    129132***********************************************************************/
     
    245248BOOL fWantFirstTimeInit;
    246249BOOL fUseShellEnv;
     250BOOL fDontAskBzip;
     251BOOL fDontAskGzip;
    247252//BOOL fDrivetoSkip[26];
    248253HPOINTER hptrApp;
     
    16201625  if (fThreadNotes)
    16211626    ShowNote();
     1627  size = sizeof(BOOL);
     1628  PrfQueryProfileData(fmprof, FM3Str, "DontAskBzip", &fDontAskBzip, &size);
     1629  size = sizeof(BOOL);
     1630  PrfQueryProfileData(fmprof, FM3Str, "DontAskGzip", &fDontAskGzip, &size);
    16221631
    16231632  LoadDetailsSwitches(PCSZ_DIRCNR, &dsDirCnrDefault, FALSE);
Note: See TracChangeset for help on using the changeset viewer.