summaryrefslogtreecommitdiff
path: root/include/modules.h
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-14 17:37:55 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-14 17:37:55 +0000
commitfa3b6b6c9ca3240366e6ec985d339a07681cd9c6 (patch)
tree7c3dfd18b7ec6a2de047d7ac82aef2057bfc3b48 /include/modules.h
parent33862809dfc9df2bf039dfbf47f7524c00947b54 (diff)
- Quick and dirty workaround to fix build on GNU/Hurd
because of undefined PATH_MAX git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1737 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include/modules.h')
-rw-r--r--include/modules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/modules.h b/include/modules.h
index f96d544..3975b84 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -45,7 +45,7 @@ struct module
struct module_path
{
dlink_node node;
- char path[PATH_MAX + 1];
+ char path[HYB_PATH_MAX + 1];
};
extern dlink_list modules_list;