summaryrefslogtreecommitdiff
path: root/xpp
diff options
context:
space:
mode:
authortzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-11 15:53:46 +0000
committertzafrir <tzafrir@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-02-11 15:53:46 +0000
commit4e43b8f19fb1d78c36f82dfa7d148ce5bc1f4ca1 (patch)
treedcb8f212c68b2bc41fad85cef891818ff4299a68 /xpp
parent2836627a98e90c1b25899262444abce86b76d547 (diff)
Merged revisions 2151 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4 ........ r2151 | tzafrir | 2007-02-11 17:48:01 +0200 (Sun, 11 Feb 2007) | 3 lines struct inode and debugfs: break some Fedoras rather than all others. (from changeset 2150) ........ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@2152 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'xpp')
-rw-r--r--xpp/xbus-core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xpp/xbus-core.c b/xpp/xbus-core.c
index 2391d44..84951d4 100644
--- a/xpp/xbus-core.c
+++ b/xpp/xbus-core.c
@@ -157,10 +157,10 @@ struct file_operations debugfs_operations = {
/*
* As part of the "inode diet" the private data member of struct inode
* has changed in 2.6.19. However, Fedore Core 6 adopted this change
- * a bit earlier (2.6.18). If you use vanila kernel (or Debian Etch)
- * Change the following test from 2,6,18 to 2,6,19.
+ * a bit earlier (2.6.18). If you use such a kernel, Change the
+ * following test from 2,6,19 to 2,6,18.
*/
-#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,18)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,19)
#define I_PRIVATE(inode) ((inode)->u.generic_ip)
#else
#define I_PRIVATE(inode) ((inode)->i_private)