Allow the use of lowercase 'yes'

PR:		bin/178422
Submitted by:	Garrett Cooper <yaneurabeya@gmail.com>
This commit is contained in:
Eitan Adler 2013-05-08 18:55:38 +00:00
parent e09b3321fa
commit 63efd0a107
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250377

View File

@ -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);
}