-
1
- #1
(Look for APAR IY50233)
Before applying:
# echo $((09 + 007))
ksh: 09 + 007: 0403-009 The specified number is not valid for this command.
After applying:
# echo $((09 + 007))
16
Description (cut from eFix readme.txt):
Problem Description
-------------------
When a variable is set to be of type integer by using typeset -i command
or integer command and let is used to set the value of the variable to a
number that starts with 0, the default base of the command is set to 8
while the actual default base should have been 10.
regards,m.
Before applying:
# echo $((09 + 007))
ksh: 09 + 007: 0403-009 The specified number is not valid for this command.
After applying:
# echo $((09 + 007))
16
Description (cut from eFix readme.txt):
Problem Description
-------------------
When a variable is set to be of type integer by using typeset -i command
or integer command and let is used to set the value of the variable to a
number that starts with 0, the default base of the command is set to 8
while the actual default base should have been 10.
regards,m.