diff options
author | Lu Chong <Chong.Lu@windriver.com> | 2013-10-16 15:02:13 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-26 15:48:48 +0100 |
commit | 88701b8c8b73202a738447ea8a1c169a0efdc7ed (patch) | |
tree | 38d912a318a92baf9c18f47fe1ae4dcb5bbae876 /meta/recipes-extended/minicom/minicom-2.6.2 | |
parent | d7014db37a62bad02a424e6d5f052abbd3c4d2ca (diff) | |
download | openembedded-core-88701b8c8b73202a738447ea8a1c169a0efdc7ed.tar.gz openembedded-core-88701b8c8b73202a738447ea8a1c169a0efdc7ed.tar.bz2 openembedded-core-88701b8c8b73202a738447ea8a1c169a0efdc7ed.zip |
minicom: fix -v/-h return value
The previous return value for '-h' and '-v' options was 1 which was
not correct. These two options should return 0 instead.
Signed-off-by: Lu Chong <Chong.Lu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/minicom/minicom-2.6.2')
-rw-r--r-- | meta/recipes-extended/minicom/minicom-2.6.2/0001-fix-minicom-h-v-return-value-is-not-0.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-extended/minicom/minicom-2.6.2/0001-fix-minicom-h-v-return-value-is-not-0.patch b/meta/recipes-extended/minicom/minicom-2.6.2/0001-fix-minicom-h-v-return-value-is-not-0.patch new file mode 100644 index 0000000000..bd8261c979 --- /dev/null +++ b/meta/recipes-extended/minicom/minicom-2.6.2/0001-fix-minicom-h-v-return-value-is-not-0.patch @@ -0,0 +1,35 @@ +Subject: [PATCH] fix minicom -h/-v return value is not 0 + +Upstream-Status: Pending + +Signed-off-by: Lu Chong <Chong.Lu@windriver.com> + +--- + src/minicom.c | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +diff --git a/src/minicom.c b/src/minicom.c +index e1a557b..730da7c 100644 +--- a/src/minicom.c ++++ b/src/minicom.c +@@ -1166,15 +1166,13 @@ int main(int argc, char **argv) + "modify it under the terms of the GNU General Public License\n" + "as published by the Free Software Foundation; either version\n" + "2 of the License, or (at your option) any later version.\n\n"); +- exit(1); +- break; ++ exit(0); + case 's': /* setup mode */ + dosetup = 1; + break; + case 'h': + helpthem(); +- exit(1); +- break; ++ exit(0); + case 'p': /* Pseudo terminal to use. */ + if (strncmp(optarg, "/dev/", 5) == 0) + optarg += 5; +-- +1.7.9.5 + |