diff --git a/src/libei.h b/src/libei.h index 5bdeb03..9c7a544 100644 --- a/src/libei.h +++ b/src/libei.h @@ -370,12 +370,12 @@ ei_property_set(struct ei *ei, const char *property, const char *value); * - If the property does not yet exist, it is created with the given @ref * ei_property_permission. * - If the property exists and @a value is not NULL and the @ref - * EI_PROPERTY_WRITE permission is set on the property, the value is changed + * EI_PROPERTY_PERM_WRITE permission is set on the property, the value is changed * to the new value and the property's permissions are updated to the given * permission. * - If the property exists and @a value is NULL and the @ref - * EI_PROPERTY_WRITE and @ref EI_PROPERTY_DELETE permission is set on the - * property, the property is deleted. + * EI_PROPERTY_PERM_WRITE and @ref EI_PROPERTY_PERM_DELETE permission is set + * on the property, the property is deleted. * * Note that property permissions only apply to the libei client, they do not * apply to the EIS server which can read, modify and delete any property @@ -396,7 +396,7 @@ ei_property_set_with_permissions(struct ei *ei, const char *property, const char /** * Return the permissions mask for the given property. If the property does - * not exist or does not have the @ref EI_PROPERTY_READ permission, + * not exist or does not have the @ref EI_PROPERTY_PERM_READ permission, * this function returns zero. */ uint32_t @@ -404,7 +404,7 @@ ei_property_get_permissions(struct ei *ei, const char *property); /** * Return the value of the given property or NULL if the property is not set - * or does not have the @ref EI_PROPERTY_READ permission. + * or does not have the @ref EI_PROPERTY_PERM_READ permission. */ const char * ei_property_get(struct ei *ei, const char *property);