From d7309fc3989cf4f9ede4f6492b5fb507dac15279 Mon Sep 17 00:00:00 2001 From: Jan Olszak Date: Tue, 2 Jul 2013 15:35:52 +0200 Subject: [PATCH] Error code for empty passwords. [Issue] No error code for empty passwords. Needed in tests. [Feature] N/A [Cause] N/A [Solution] Added error code [Verification] Build Change-Id: Icb1d6aacaf5b346ab2733245d7d328d48a1e03f5 --- src/include/security-server.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/security-server.h b/src/include/security-server.h index 3434b2e..9e53891 100644 --- a/src/include/security-server.h +++ b/src/include/security-server.h @@ -125,6 +125,9 @@ /*! \brief indicating password retry timeout is not occurred yet */ #define SECURITY_SERVER_API_ERROR_PASSWORD_REUSED -20 +/*! \brief indicating password is empty */ +#define SECURITY_SERVER_API_ERROR_PASSWORD_EMPTY -21 + /*! \brief indicating the error with unknown reason */ #define SECURITY_SERVER_API_ERROR_UNKNOWN -255 /** @}*/ -- 2.7.4