Skip to content

Commit feb9a2c

Browse files
authored
Merge pull request #72 from SwethaParasa/1110
opfunctions: Fix dumpId length
2 parents f523d8d + 76ae30e commit feb9a2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dump/tools/common/include/opfunctions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function fetch_serial_number() {
2020
# @param BMC Dump File Name
2121
function get_bmc_dump_filename() {
2222
fetch_serial_number
23-
dump_id=$(printf %07d $dump_id)
23+
dump_id=$(printf %08d $dump_id)
2424
if [ $dump_type = "$TYPE_FAULTDATA" ]; then
2525
header_dump_name="FLTDUMP"
2626
name="NAGDUMP.${serialNo}.${dump_id}.${dDay}"

0 commit comments

Comments
 (0)