diff options
author | eadler <eadler@FreeBSD.org> | 2013-05-08 18:55:38 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2013-05-08 18:55:38 +0000 |
commit | b41b20fa98c09c611a80ebcfebd518bafebb3198 (patch) | |
tree | 1dbdb0d3eb1b00ab087702b831ba4c65d335963e | |
parent | d59507806675c29c427a3989dacb5d4f12da6be3 (diff) | |
download | FreeBSD-src-b41b20fa98c09c611a80ebcfebd518bafebb3198.zip FreeBSD-src-b41b20fa98c09c611a80ebcfebd518bafebb3198.tar.gz |
Allow the use of lowercase 'yes'
PR: bin/178422
Submitted by: Garrett Cooper <yaneurabeya@gmail.com>
-rw-r--r-- | sbin/growfs/growfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c index fe49efb..b8a81c2 100644 --- a/sbin/growfs/growfs.c +++ b/sbin/growfs/growfs.c @@ -1544,7 +1544,7 @@ main(int argc, char **argv) printf(" from %s to %s? [Yes/No] ", oldsizebuf, newsizebuf); fflush(stdout); fgets(reply, (int)sizeof(reply), stdin); - if (strcmp(reply, "Yes\n")){ + if (strcasecmp(reply, "Yes\n")){ printf("\nNothing done\n"); exit (0); } |