File tree Expand file tree Collapse file tree 16 files changed +13
-12
lines changed Expand file tree Collapse file tree 16 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 1
1
2
2
History (newest at top)
3
3
=======================
4
+ Mar 2021 (v5.3.1)
5
+ * Update for MQ V9.2.2 (no real change)
6
+
4
7
July 2020 (v5.3)
5
8
* Update for MQ V9.2
6
9
* Support for AMS SMF type 180 (thanks to Andrew Mattingly)
Original file line number Diff line number Diff line change 26
26
flags=" $flags $optim "
27
27
fi
28
28
29
- export PLATFLAGS=$flags CC=$cc VERS=920
29
+ export PLATFLAGS=$flags CC=$cc VERS=922
30
30
make -e -f Makefile.unix $*
31
31
32
32
rm -f $targdir /convH $targdir /mqsmfcsv
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ CC=i686-w64-mingw32-gcc
3
3
# CFLAGS= -I. -m32 -fpack-struct=8 -DPLATFORM_WINDOWS
4
4
CFLAGS= -I. -m32 -DPLATFORM_WINDOWS
5
5
PLATFLAGS=
6
- VERS=920
6
+ VERS=922
7
7
SRC = mqsmf.c \
8
8
smfDDL.c \
9
9
smfDate.c \
Original file line number Diff line number Diff line change 1
1
CFLAGS=-nologo /D_CRT_SECURE_NO_WARNINGS /Zp1 /J /O2 /DPLATFORM_WINDOWS
2
- VERS=920
2
+ VERS=922
3
3
SRC = mqsmf.c \
4
4
smfDDL.c \
5
5
smfDate.c \
Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ void printHeader(char *version)
372
372
printf (" * by the convH program (convH64.c) in the src directory\n" );
373
373
printf (" * Do not try to edit this header manually.\n" );
374
374
printf (" * \n" );
375
- printf (" * (C) Copyright IBM Corp. 1993, 2020 All Rights Reserved.\n" );
375
+ printf (" * (C) Copyright IBM Corp. 1993, 2021 All Rights Reserved.\n" );
376
376
printf (" * \n" );
377
377
printf (" */\n" );
378
378
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * This file was generated from cqsdsmfc.h version 920
2
+ * This file was generated from cqsdsmfc.h version 922
3
3
* by the convH program (convH64.c) in the src directory
4
4
* Do not try to edit this header manually.
5
5
*
6
- * (C) Copyright IBM Corp. 1993, 2020 All Rights Reserved.
6
+ * (C) Copyright IBM Corp. 1993, 2021 All Rights Reserved.
7
7
*
8
8
*/
9
9
#pragma pack(1)
Original file line number Diff line number Diff line change 1
1
/*
2
- * This file was generated from cqsdsmfc.h version 920
2
+ * This file was generated from cqsdsmfc.h version 922
3
3
* by the convH program (convH64.c) in the src directory
4
4
* Do not try to edit this header manually.
5
5
*
6
- * (C) Copyright IBM Corp. 1993, 2020 All Rights Reserved.
6
+ * (C) Copyright IBM Corp. 1993, 2021 All Rights Reserved.
7
7
*
8
8
*/
9
9
#pragma pack(1)
Original file line number Diff line number Diff line change @@ -438,7 +438,7 @@ char *strCfStatType(int v)
438
438
case 6 : c = "Write" ; break ;
439
439
case 7 : c = "StartMon" ; break ;
440
440
case 8 : c = "StopMon" ; break ;
441
- case 9 : c = "Unused" ; break ;
441
+ case 9 : c = "ReadList" ; break ;
442
442
case 10 : c = "New" ; break ;
443
443
case 11 : c = "Move" ; break ;
444
444
case 12 : c = "MoveEntry" ; break ;
Original file line number Diff line number Diff line change @@ -220,8 +220,6 @@ void printWQ(wq *p)
220
220
{
221
221
for (j = 0 ;j < 14 ;j ++ )/* Last few of the array are unused, so don't print them*/
222
222
{
223
- if (j == 9 )
224
- continue ; /* An unused entry*/
225
223
if (first ) {
226
224
/* Easier to understand if "ET" is at the end of the headings. */
227
225
/* So there are two types of heading needed in this loop. */
Original file line number Diff line number Diff line change 19
19
20
20
21
21
/********************************************************************/
22
- /* Note that AMS can emit SMF records with a configurablt record */
22
+ /* Note that AMS can emit SMF records with a configurable record */
23
23
/* type but the default is 180. */
24
24
/********************************************************************/
25
25
You can’t perform that action at this time.
0 commit comments