Add the missed 'p' flag to getopt() optstring argument.

MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2010-12-15 12:45:28 +00:00
parent 97ea4cb11c
commit 03ee10d8e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216453

View File

@ -139,7 +139,7 @@ main(int argc, char *argv[])
part_name = 'c';
reserved = 0;
while ((ch = getopt(argc, argv,
"EJL:NO:RS:T:UXa:b:c:d:e:f:g:h:i:lm:no:r:s:")) != -1)
"EJL:NO:RS:T:UXa:b:c:d:e:f:g:h:i:lm:no:p:r:s:")) != -1)
switch (ch) {
case 'E':
Eflag = 1;