Codebase list squidview / c19b771
New upstream version 0.86 Willi Mann 6 years ago
4 changed file(s) with 8 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 >> Squidview history:
1
2 0.86 February 2017
3 - fix clang compiler warning, thanks http://people.freebsd.org/~danilo/
14
25 0.85 Janurary 2017
36 - another result code, thanks Yuri Voinov
26612661 # Define the identity of the package.
26622662
26632663 PACKAGE=squidview
2664 VERSION=0.85
2664 VERSION=0.86
26652665
26662666
26672667 cat >>confdefs.h <<_ACEOF
1414
1515 AC_INIT(squidview.cpp)
1616 AM_CONFIG_HEADER(config.h)
17 AM_INIT_AUTOMAKE(squidview,0.85)
17 AM_INIT_AUTOMAKE(squidview,0.86)
1818 AC_PROG_CXX
1919 AC_PROG_INSTALL
2020
10011001 FILE* fOutput;
10021002
10031003 fOutput = fopen (sWordFile.c_str(), "w");
1004 if (fOutput <= 0)
1004 if (fOutput == NULL)
10051005 return 0;
10061006
10071007 iIndex = 0;
21672167 {
21682168 fOutput = fopen (string (sPathToFiles + "/" + sRepFileName)
21692169 .c_str(), "w");
2170 if (fOutput == 0)
2170 if (fOutput == NULL)
21712171 {
21722172 sStatusMessage = "Could not write to " + sRepFileName;
21732173 return;
38293829 bSave = true;
38303830 bError = false;
38313831 fIO = fopen (sSetFileName.c_str(), "w");
3832 if (fIO == 0)
3832 if (fIO == NULL)
38333833 {
38343834 sStatusMessage = string ("Could not write to ") + sSetFileName;
38353835 return;