diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-12 00:03:44 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-12 00:03:44 +0000 |
commit | bd6496191222fab41b364dfcad54ec52a753be7d (patch) | |
tree | 3f738f8ec6777ef444054f0915da56edbf2dae46 /src/inspircd.cpp | |
parent | 2abcc65d696dbb24c1515fd756a1bc648bcb0d02 (diff) |
Improve support for NetBSD
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12438 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index b95a6fecb..58015b718 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -392,7 +392,7 @@ InspIRCd::InspIRCd(int argc, char** argv) : }; int index; - while ((c = getopt_long_only(argc, argv, ":f:", longopts, &index)) != -1) + while ((c = getopt_long(argc, argv, ":f:", longopts, &index)) != -1) { switch (c) { |