1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-30 14:55:26 +03:00

allow longer devpath values

This commit is contained in:
Kay Sievers 2006-07-06 13:49:43 +02:00
parent c76b97dc4d
commit 989e081131

8
udev.h
View File

@ -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;