|
From: <sto...@us...> - 2003-10-20 15:09:47
|
Update of /cvsroot/genericircd/gircd2.0/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv23925/tools
Modified Files:
Makefile.crypt mkpasswd mkpasswd.c
Log Message:
fixed minor installer bugs, added BSD installer, added some missing files, and moved all documentation to doc/. Commit on behalf of Ishtar
Index: Makefile.crypt
===================================================================
RCS file: /cvsroot/genericircd/gircd2.0/tools/Makefile.crypt,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile.crypt 12 Jul 2003 20:09:02 -0000 1.1.1.1
--- Makefile.crypt 20 Oct 2003 09:27:41 -0000 1.2
***************
*** 29,32 ****
--- 29,33 ----
mkpasswd: mkpasswd.c
gcc -Wall -O2 mkpasswd.c -o mkpasswd ${LIBS}
+ gcc -Wall -O2 instmkpass.c -o instmkpass ${LIBS}
install:
***************
*** 35,37 ****
clean:
! /bin/rm -f mkpasswd
--- 36,38 ----
clean:
! /bin/rm -f mkpasswd instmkpass
Index: mkpasswd
===================================================================
RCS file: /cvsroot/genericircd/gircd2.0/tools/mkpasswd,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
Binary files /tmp/cvsPFcI0i and /tmp/cvsy18NKr differ
Index: mkpasswd.c
===================================================================
RCS file: /cvsroot/genericircd/gircd2.0/tools/mkpasswd.c,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** mkpasswd.c 12 Jul 2003 20:09:03 -0000 1.1.1.1
--- mkpasswd.c 20 Oct 2003 09:27:42 -0000 1.2
***************
*** 32,36 ****
}
! plaintext = argv[1];
printf("%s\n", crypt(plaintext, salt));
--- 32,36 ----
}
! plaintext = getpass("plaintext: ");
printf("%s\n", crypt(plaintext, salt));
|