Constify.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2014-04-16 11:01:59 +00:00
parent 8eab95d646
commit d6093026ec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264531
2 changed files with 13 additions and 10 deletions

View File

@ -139,7 +139,7 @@ auth_delete(struct auth *auth)
}
const struct auth *
auth_find(struct auth_group *ag, const char *user)
auth_find(const struct auth_group *ag, const char *user)
{
const struct auth *auth;
@ -407,7 +407,7 @@ auth_group_delete(struct auth_group *ag)
}
struct auth_group *
auth_group_find(struct conf *conf, const char *name)
auth_group_find(const struct conf *conf, const char *name)
{
struct auth_group *ag;
@ -534,7 +534,7 @@ portal_group_delete(struct portal_group *pg)
}
struct portal_group *
portal_group_find(struct conf *conf, const char *name)
portal_group_find(const struct conf *conf, const char *name)
{
struct portal_group *pg;
@ -833,7 +833,7 @@ lun_delete(struct lun *lun)
}
struct lun *
lun_find(struct target *targ, int lun_id)
lun_find(const struct target *targ, int lun_id)
{
struct lun *lun;
@ -929,7 +929,7 @@ lun_option_delete(struct lun_option *lo)
}
struct lun_option *
lun_option_find(struct lun *lun, const char *name)
lun_option_find(const struct lun *lun, const char *name)
{
struct lun_option *lo;

View File

@ -211,7 +211,8 @@ int conf_verify(struct conf *conf);
struct auth_group *auth_group_new(struct conf *conf, const char *name);
void auth_group_delete(struct auth_group *ag);
struct auth_group *auth_group_find(struct conf *conf, const char *name);
struct auth_group *auth_group_find(const struct conf *conf,
const char *name);
int auth_group_set_type_str(struct auth_group *ag,
const char *type);
@ -220,7 +221,7 @@ const struct auth *auth_new_chap(struct auth_group *ag,
const struct auth *auth_new_chap_mutual(struct auth_group *ag,
const char *user, const char *secret,
const char *user2, const char *secret2);
const struct auth *auth_find(struct auth_group *ag,
const struct auth *auth_find(const struct auth_group *ag,
const char *user);
const struct auth_name *auth_name_new(struct auth_group *ag,
@ -237,7 +238,8 @@ const struct auth_portal *auth_portal_find(const struct auth_group *ag,
struct portal_group *portal_group_new(struct conf *conf, const char *name);
void portal_group_delete(struct portal_group *pg);
struct portal_group *portal_group_find(struct conf *conf, const char *name);
struct portal_group *portal_group_find(const struct conf *conf,
const char *name);
int portal_group_add_listen(struct portal_group *pg,
const char *listen, bool iser);
@ -248,7 +250,7 @@ struct target *target_find(struct conf *conf,
struct lun *lun_new(struct target *target, int lun_id);
void lun_delete(struct lun *lun);
struct lun *lun_find(struct target *target, int lun_id);
struct lun *lun_find(const struct target *target, int lun_id);
void lun_set_backend(struct lun *lun, const char *value);
void lun_set_blocksize(struct lun *lun, size_t value);
void lun_set_device_id(struct lun *lun, const char *value);
@ -260,7 +262,8 @@ void lun_set_ctl_lun(struct lun *lun, uint32_t value);
struct lun_option *lun_option_new(struct lun *lun,
const char *name, const char *value);
void lun_option_delete(struct lun_option *clo);
struct lun_option *lun_option_find(struct lun *lun, const char *name);
struct lun_option *lun_option_find(const struct lun *lun,
const char *name);
void lun_option_set(struct lun_option *clo,
const char *value);