Skip to content

Commit

Permalink
fix: data type issue in Toolkit.getSysStatus and Toolkit.getSysStatus…
Browse files Browse the repository at this point in the history
…Ext (#190)
  • Loading branch information
abmusse authored Mar 26, 2020
1 parent d5c62f2 commit 15397c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Toolkit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2043,7 +2043,7 @@ class Toolkit {
fields: [
{ type: '10i0', value: 0 }, // Bytes available
{ type: '10i0', value: 0 }, // Bytes returned
{ type: '8A', value: '' }, // Current date and time
{ type: '20u0', value: '' }, // Current date and time
{ type: '8A', value: '' }, // System name
{ type: '10i0', value: 0 }, // Users currently signed on
{ type: '10i0', value: 0 }, // Users temporarily signed off (disconnected)
Expand Down Expand Up @@ -2130,7 +2130,7 @@ class Toolkit {
fields: [
{ type: '10i0', value: 0 }, // Bytes available
{ type: '10i0', value: 0 }, // Bytes returned
{ type: '8A', value: '' }, // Current date and time
{ type: '20u0', value: '' }, // Current date and time
{ type: '8A', value: '' }, // System name
{ type: '6A', value: '' }, // Elapsed time
{ type: '1A', value: '' }, // Restricted state flag
Expand Down

0 comments on commit 15397c2

Please sign in to comment.