X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=udev.h;h=95a2b88f5ee10266c8d801696dc40cd1f58187f6;hp=94d1676c90d4e1def5c17572f7ddae2ebf133f98;hb=eb82b76dedc1482b6434c46fee84d3ef13cb9648;hpb=ff9a488d8c559a2ee40e522cdc68b750670711e4 diff --git a/udev.h b/udev.h index 94d1676c9..95a2b88f5 100644 --- a/udev.h +++ b/udev.h @@ -33,10 +33,8 @@ #define COMMENT_CHARACTER '#' #define PATH_TO_NAME_CHAR '@' #define LINE_SIZE 512 +#define PATH_SIZE 512 #define NAME_SIZE 128 -#define PATH_SIZE 256 -#define USER_SIZE 32 -#define SEQNUM_SIZE 32 #define VALUE_SIZE 128 #define DEFAULT_PARTITIONS_COUNT 15 @@ -73,9 +71,9 @@ struct udevice { char name[PATH_SIZE]; struct list_head symlink_list; int symlink_final; - char owner[USER_SIZE]; + char owner[NAME_SIZE]; int owner_final; - char group[USER_SIZE]; + char group[NAME_SIZE]; int group_final; mode_t mode; int mode_final; @@ -136,8 +134,8 @@ struct name_entry { char name[PATH_SIZE]; }; extern int log_priority(const char *priority); -extern int name_list_add(struct list_head *name_list, const char *name, int sort); -extern int name_list_key_add(struct list_head *name_list, const char *key, const char *value); +extern char *name_list_add(struct list_head *name_list, const char *name, int sort); +extern char *name_list_key_add(struct list_head *name_list, const char *key, const char *value); extern void name_list_cleanup(struct list_head *name_list); extern int add_matching_files(struct list_head *name_list, const char *dirname, const char *suffix);