소스 검색

[parseopt] Allow "0x"-prefixed hexadecimal values in integer-valued options

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 14 년 전
부모
커밋
01df5c510f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/core/parseopt.c

+ 1
- 1
src/core/parseopt.c 파일 보기

@@ -72,7 +72,7 @@ int parse_integer ( const char *text, unsigned int *value ) {
72 72
 	assert ( text != NULL );
73 73
 
74 74
 	/* Parse integer */
75
-	*value = strtoul ( text, &endp, 10 );
75
+	*value = strtoul ( text, &endp, 0 );
76 76
 	if ( *endp ) {
77 77
 		printf ( "\"%s\": invalid integer value\n", text );
78 78
 		return -EINVAL;

Loading…
취소
저장