浏览代码

[getopt] Accept "--" as an end-of-options marker

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Marin Hannache 13 年前
父节点
当前提交
be90241ec2
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5
    0
      src/core/getopt.c

+ 5
- 0
src/core/getopt.c 查看文件

@@ -239,6 +239,11 @@ int getopt_long ( int argc, char * const argv[], const char *optstring,
239 239
 
240 240
 	/* Check for long options */
241 241
 	if ( *(opttext++) == '-' ) {
242
+		/* "--" indicates end of options */
243
+		if ( *opttext == '\0' ) {
244
+			optind++;
245
+			return -1;
246
+		}
242 247
 		for ( longopt = longopts ; longopt->name ; longopt++ ) {
243 248
 			if ( ! match_long_option ( argc, argv, opttext,
244 249
 						   longopt, &option ) )

正在加载...
取消
保存