1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 17:14:46 +02:00

fixed makeconf

This commit is contained in:
codemastr
2001-06-27 21:40:59 +00:00
parent dfb1942aba
commit a499f98271
2 changed files with 4 additions and 4 deletions
+1
View File
@@ -617,3 +617,4 @@ seen. gmtime warning still there
- Fixed a bug allowing channek keys to have spaces
- Cleaned up some thread porting code
- Added a new versioning system to allow easy tracking of bugs
- Fixed makeconf
+3 -4
View File
@@ -56,8 +56,8 @@ fi
# If Settings exist, load the info, otherwise tell them to run Config.
if [ -r Settings ]; then
. Settings
if [ -r "config.settings" ]; then
. config.settings
else
echo "Hmm, you need to run Config first!"
echo "Type ./Config"
@@ -65,10 +65,9 @@ else
echo "you ran it from."
exit 1
fi
# we use a modified mkpasswd credit to Nelson Minar (minar@reed.edu)
# for creating the original mkpasswd
if test $CRYPT_OPER_PASSWORD != "" || test $CRYPT_LINK_PASSWORD != "" || test $CRYPT_XLINE_PASSWORD != "" ; then
if test "x$CRYPT_OPER_PASSWORD" != "x" -o "x$CRYPT_LINK_PASSWORD" != "x" -o "x$CRYPT_XLINE_PASSWORD" != "x" ; then
cat > crypter.tmp.c << __EOF__
#include <stdlib.h>
#include <stdio.h>