quota2: prefix internal struct name with xt_

This commit is contained in:
Jan Engelhardt
2009-07-04 01:29:32 +02:00
parent d97f77a8f5
commit 62fb261265
2 changed files with 14 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ enum xt_quota_flags {
XT_QUOTA_COUNTER_NAME_LENGTH = 31,
};
struct quota_counter;
struct xt_quota_counter;
struct xt_quota_mtinfo2 {
char name[XT_QUOTA_COUNTER_NAME_LENGTH];
@@ -20,7 +20,7 @@ struct xt_quota_mtinfo2 {
aligned_u64 quota;
/* Used internally by the kernel */
struct quota_counter *master __attribute__((aligned(8)));
struct xt_quota_counter *master __attribute__((aligned(8)));
};
#endif /* _XT_QUOTA_H */