libbe(3): Put each error value in separate line.

As requested by a TODO in the source code.

Reviewed by:	bcr
Approved by:	krion (mentor, implicit), mat (mentor, implicit)
Differential Revision:	https://reviews.freebsd.org/D18063
This commit is contained in:
Mateusz Piotrowski 2018-11-21 11:22:44 +00:00
parent f82dd310bb
commit cc58f749fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=340722

View File

@ -28,7 +28,7 @@
.\" .\"
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd November 17, 2018 .Dd November 21, 2018
.Dt LIBBE 3 .Dt LIBBE 3
.Os .Os
.Sh NAME .Sh NAME
@ -440,30 +440,49 @@ The
.Fn be_prop_list_free .Fn be_prop_list_free
function will free the property list. function will free the property list.
.Sh DIAGNOSTICS .Sh DIAGNOSTICS
Upon error, one of the following values will be returned. Upon error, one of the following values will be returned:
.\" TODO: make each entry on its own line. .Bl -dash -offset indent -compact
.Bd -ragged -offset indent .It
BE_ERR_SUCCESS, BE_ERR_SUCCESS
BE_ERR_INVALIDNAME, .It
BE_ERR_EXISTS, BE_ERR_INVALIDNAME
BE_ERR_NOENT, .It
BE_ERR_PERMS, BE_ERR_EXISTS
BE_ERR_DESTROYACT, .It
BE_ERR_DESTROYMNT, BE_ERR_NOENT
BE_ERR_BADPATH, .It
BE_ERR_PATHBUSY, BE_ERR_PERMS
BE_ERR_PATHLEN, .It
BE_ERR_BADMOUNT, BE_ERR_DESTROYACT
BE_ERR_NOORIGIN, .It
BE_ERR_MOUNTED, BE_ERR_DESTROYMNT
BE_ERR_NOMOUNT, .It
BE_ERR_ZFSOPEN, BE_ERR_BADPATH
BE_ERR_ZFSCLONE, .It
BE_ERR_IO, BE_ERR_PATHBUSY
BE_ERR_NOPOOL, .It
BE_ERR_NOMEM, BE_ERR_PATHLEN
.It
BE_ERR_BADMOUNT
.It
BE_ERR_NOORIGIN
.It
BE_ERR_MOUNTED
.It
BE_ERR_NOMOUNT
.It
BE_ERR_ZFSOPEN
.It
BE_ERR_ZFSCLONE
.It
BE_ERR_IO
.It
BE_ERR_NOPOOL
.It
BE_ERR_NOMEM
.It
BE_ERR_UNKNOWN BE_ERR_UNKNOWN
.Ed .El
.Sh SEE ALSO .Sh SEE ALSO
.Xr be 1 .Xr be 1
.Sh HISTORY .Sh HISTORY