]> Kevux Git Server - fll/commitdiff
Cleanup: Return F_exists_not for owner and group to id get function.
authorKevin Day <kevin@kevux.org>
Sun, 5 Mar 2023 16:12:56 +0000 (10:12 -0600)
committerKevin Day <kevin@kevux.org>
Sun, 5 Mar 2023 16:12:56 +0000 (10:12 -0600)
Update the documentation comments appropriately.
Remove F_exists_not documentation comment from the mode id get function.

level_3/fake/c/private-make.c
level_3/fake/c/private-make.h

index 5f33dd63ffef7426c694bae5ed176e869470feaf..642e986c3e14fa003c8baba375b8efea8740adaf 100644 (file)
@@ -69,7 +69,7 @@ extern "C" {
             funlockfile(data->main->error.to.stream);
           }
 
-          return F_status_set_error(F_failure);
+          return F_status_set_error(F_exist_not);
         }
 
         return F_none;
@@ -164,7 +164,7 @@ extern "C" {
             funlockfile(data->main->error.to.stream);
           }
 
-          return F_status_set_error(F_failure);
+          return F_status_set_error(F_exist_not);
         }
 
         return F_none;
index 66cd84f8adf4679c53906280c52719497abcf049..365aae741ad307b2573fd3499516c55c5b680ac2 100644 (file)
@@ -45,7 +45,6 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_exist_not if there is no group by the given name.
  *
  *   Status codes (with error bit) are returned on any problem.
  */
@@ -71,8 +70,8 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_exist_not if there is no mode by the given name.
  *
+ *   F_exist_not (with error bit) if there is no mode by the given name.
  *   Status codes (with error bit) are returned on any problem.
  */
 #ifndef _di_fake_make_get_id_mode_
@@ -93,8 +92,8 @@ extern "C" {
  *
  * @return
  *   F_none on success.
- *   F_exist_not if there is no user by the given name.
  *
+ *   F_exist_not (with error bit) if there is no mode by the given name.
  *   Status codes (with error bit) are returned on any problem.
  */
 #ifndef _di_fake_make_get_id_owner_