1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

bectl(8): Kit-kat bar

This commit is contained in:
Kyle Evans 2018-08-16 18:27:43 +00:00
parent a9c660b0d5
commit 25eeb3ea95
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=337918

View File

@ -188,13 +188,14 @@ bectl_cmd_create(int argc, char *argv[])
snapname = NULL;
recursive = false;
while ((opt = getopt(argc, argv, "re:")) != -1) {
while ((opt = getopt(argc, argv, "e:r")) != -1) {
switch (opt) {
case 'e':
snapname = optarg;
break;
case 'r':
recursive = true;
break;
default:
fprintf(stderr, "bectl create: unknown option '-%c'\n",
optopt);