diff options
author | Ron Yorston <rmy@pobox.com> | 2017-08-22 14:56:12 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2017-08-22 14:56:12 +0100 |
commit | ce9af1cc5ea23f754587448cf35b5120c77bfeef (patch) | |
tree | 69e5eaba5e75ab909ed92d5045393471b8ff3c13 /miscutils/microcom.c | |
parent | c170026700eabb10147dd848c45c06995b43a32e (diff) | |
parent | e837a0dbbebf4229306df98fe9ee3b9bb30630c4 (diff) | |
download | busybox-w32-ce9af1cc5ea23f754587448cf35b5120c77bfeef.tar.gz busybox-w32-ce9af1cc5ea23f754587448cf35b5120c77bfeef.tar.bz2 busybox-w32-ce9af1cc5ea23f754587448cf35b5120c77bfeef.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'miscutils/microcom.c')
-rw-r--r-- | miscutils/microcom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/miscutils/microcom.c b/miscutils/microcom.c index 14b9f3baf..b87f3273f 100644 --- a/miscutils/microcom.c +++ b/miscutils/microcom.c | |||
@@ -74,7 +74,9 @@ int microcom_main(int argc UNUSED_PARAM, char **argv) | |||
74 | unsigned opts; | 74 | unsigned opts; |
75 | 75 | ||
76 | // fetch options | 76 | // fetch options |
77 | opts = getopt32(argv, "Xs:+d:+t:+", &speed, &delay, &timeout); | 77 | opts = getopt32(argv, "^" "Xs:+d:+t:+" "\0" "=1", |
78 | &speed, &delay, &timeout | ||
79 | ); | ||
78 | // argc -= optind; | 80 | // argc -= optind; |
79 | argv += optind; | 81 | argv += optind; |
80 | 82 | ||