[settings] Force settings into alphabetical order within sections

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2013-12-05 12:38:51 +00:00
parent 8aab959bed
commit b0942534eb
19 changed files with 158 additions and 125 deletions

View File

@@ -58,14 +58,14 @@ struct oncrpc_cred oncrpc_auth_none = {
.length = 0
};
const struct setting uid_setting __setting ( SETTING_AUTH ) = {
const struct setting uid_setting __setting ( SETTING_AUTH, uid ) = {
.name = "uid",
.description = "User ID",
.tag = DHCP_EB_UID,
.type = &setting_type_uint32
};
const struct setting gid_setting __setting ( SETTING_AUTH ) = {
const struct setting gid_setting __setting ( SETTING_AUTH, gid ) = {
.name = "gid",
.description = "Group ID",
.tag = DHCP_EB_GID,