Skip to content

Commit 09f0f52

Browse files
committed
Update to current MQ release (V9.2.2)
1 parent e1cfc64 commit 09f0f52

File tree

16 files changed

+13
-12
lines changed

16 files changed

+13
-12
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
History (newest at top)
33
=======================
4+
Mar 2021 (v5.3.1)
5+
* Update for MQ V9.2.2 (no real change)
6+
47
July 2020 (v5.3)
58
* Update for MQ V9.2
69
* Support for AMS SMF type 180 (thanks to Andrew Mattingly)

bin/aix/convH

0 Bytes
Binary file not shown.

bin/aix/mqsmfcsv

-10 Bytes
Binary file not shown.

bin/linux/convH

-2.48 KB
Binary file not shown.

bin/linux/mqsmfcsv

-2.45 KB
Binary file not shown.

bin/win/convH.exe

0 Bytes
Binary file not shown.

bin/win/mqsmfcsv.exe

0 Bytes
Binary file not shown.

src/M

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ else
2626
flags="$flags $optim"
2727
fi
2828

29-
export PLATFLAGS=$flags CC=$cc VERS=920
29+
export PLATFLAGS=$flags CC=$cc VERS=922
3030
make -e -f Makefile.unix $*
3131

3232
rm -f $targdir/convH $targdir/mqsmfcsv

src/Makefile.gcc.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CC=i686-w64-mingw32-gcc
33
# CFLAGS= -I. -m32 -fpack-struct=8 -DPLATFORM_WINDOWS
44
CFLAGS= -I. -m32 -DPLATFORM_WINDOWS
55
PLATFLAGS=
6-
VERS=920
6+
VERS=922
77
SRC = mqsmf.c \
88
smfDDL.c \
99
smfDate.c \

src/Makefile.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CFLAGS=-nologo /D_CRT_SECURE_NO_WARNINGS /Zp1 /J /O2 /DPLATFORM_WINDOWS
2-
VERS=920
2+
VERS=922
33
SRC = mqsmf.c \
44
smfDDL.c \
55
smfDate.c \

src/convH64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ void printHeader(char *version)
372372
printf(" * by the convH program (convH64.c) in the src directory\n");
373373
printf(" * Do not try to edit this header manually.\n");
374374
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");
376376
printf(" * \n");
377377
printf(" */\n");
378378
}

src/mqsmfstrucU.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file was generated from cqsdsmfc.h version 920
2+
* This file was generated from cqsdsmfc.h version 922
33
* by the convH program (convH64.c) in the src directory
44
* Do not try to edit this header manually.
55
*
6-
* (C) Copyright IBM Corp. 1993, 2020 All Rights Reserved.
6+
* (C) Copyright IBM Corp. 1993, 2021 All Rights Reserved.
77
*
88
*/
99
#pragma pack(1)

src/mqsmfstrucW.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This file was generated from cqsdsmfc.h version 920
2+
* This file was generated from cqsdsmfc.h version 922
33
* by the convH program (convH64.c) in the src directory
44
* Do not try to edit this header manually.
55
*
6-
* (C) Copyright IBM Corp. 1993, 2020 All Rights Reserved.
6+
* (C) Copyright IBM Corp. 1993, 2021 All Rights Reserved.
77
*
88
*/
99
#pragma pack(1)

src/smfConv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ char *strCfStatType(int v)
438438
case 6: c = "Write" ; break;
439439
case 7: c = "StartMon" ; break;
440440
case 8: c = "StopMon" ; break;
441-
case 9: c = "Unused" ; break;
441+
case 9: c = "ReadList" ; break;
442442
case 10: c = "New" ; break;
443443
case 11: c = "Move" ; break;
444444
case 12: c = "MoveEntry" ; break;

src/t116/printWQ.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ void printWQ(wq *p)
220220
{
221221
for (j=0;j<14;j++)/* Last few of the array are unused, so don't print them*/
222222
{
223-
if (j==9)
224-
continue; /* An unused entry*/
225223
if (first) {
226224
/* Easier to understand if "ET" is at the end of the headings. */
227225
/* So there are two types of heading needed in this loop. */

src/t180/smf180.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
/********************************************************************/
22-
/* Note that AMS can emit SMF records with a configurablt record */
22+
/* Note that AMS can emit SMF records with a configurable record */
2323
/* type but the default is 180. */
2424
/********************************************************************/
2525

0 commit comments

Comments
 (0)