chiark / gitweb /
libvolume_id: read ufs2 label
[elogind.git] / udev.h
diff --git a/udev.h b/udev.h
index 94d1676c90d4e1def5c17572f7ddae2ebf133f98..95a2b88f5ee10266c8d801696dc40cd1f58187f6 100644 (file)
--- a/udev.h
+++ b/udev.h
 #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);