Skip to content

Commit

Permalink
Merge pull request #102 from zowe/bugfix/wto-printf
Browse files Browse the repository at this point in the history
Added missing syslog check gap for WTO
  • Loading branch information
1000TurquoisePogs authored Oct 23, 2023
2 parents 824490d + 22f9b6e commit 05d3f6e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
All notable changes to the Zowe Launcher package will be documented in this file..
This repo is part of the app-server Zowe Component, and the change logs here may appear on Zowe.org in that section.

## 2.13.0
- Added a wrapper for wtoPrintf3
## 2.12.0
- Added a wrapper for wtoPrintf3
- Bugfix: Fixed a gap in WTO syslog checking
2 changes: 1 addition & 1 deletion build/launcher.proj.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT="launcher"
VERSION=2.13.0
VERSION=2.12.0
DEPS="QUICKJS LIBYAML COMMON"

QUICKJS="quickjs"
Expand Down
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: launcher
# Component identifier. This identifier matches artifact path in Zowe Artifactory https://zowe.jfrog.io/.
id: org.zowe.launcher
# Component version
version: 2.13.0
version: 2.12.0
# Human readable component name
title: Zowe Launcher
# Human readable component description
Expand Down
1 change: 1 addition & 0 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -782,6 +782,7 @@ static void *handle_comp_comm(void *args) {

while (next_line) {
printf("%s\n", next_line);
check_for_and_print_sys_message(next_line);
next_line = strtok(NULL, "\n");
}

Expand Down

0 comments on commit 05d3f6e

Please sign in to comment.