Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Add a new error code for attempting to operate on a locked package.
Matthew Seaman committed 13 years ago
commit bc09d725890abcfe1e916e9af35ad317d7f8f140
parent 62dd05e
1 file changed +8 -2
modified libpkg/pkg.h
@@ -323,7 +323,8 @@ typedef enum {
	 */
	EPKG_FATAL,
	/**
-
	 * Can not delete the package because it is required by another package.
+
	 * Can not delete the package because it is required by
+
	 * another package.
	 */
	EPKG_REQUIRED,
	/**
@@ -331,10 +332,15 @@ typedef enum {
	 */
	EPKG_INSTALLED,
	/**
-
	 * Can not install the package because some dependencies are unresolved.
+
	 * Can not install the package because some dependencies are
+
	 * unresolved.
	 */
	EPKG_DEPENDENCY,
	/**
+
         * Can not operate on package because it is locked
+
	 */
+
	EPKG_LOCKED,
+
	/**
	 * Can not create local database
	 */
	EPKG_ENODB,