summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-01 07:33:18 +0000
committerfez <fez@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-01 07:33:18 +0000
commite13982955715d9b68554dc0920e7cd74cd3d4367 (patch)
tree9d132dd863deb268503f9bef66e91449f31f054c
parent4400fce6492440c4b4f9c8426afc1b8c9da77754 (diff)
fixed type defiined to defined
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8779 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 887c58afe..09efb51f3 100755
--- a/configure
+++ b/configure
@@ -546,7 +546,7 @@ $has_kqueue = 0;
$fail = 0;
open(KQUEUE, "</usr/include/sys/event.h") or $fail = 1;
if (!$fail) {
- while (defiined(my $line = <KQUEUE>)) {
+ while (defined(my $line = <KQUEUE>)) {
chomp($line);
# try and find the delcaration of:
# int kqueue(void);