diff options
author | roam <roam@FreeBSD.org> | 2001-01-20 00:13:18 +0000 |
---|---|---|
committer | roam <roam@FreeBSD.org> | 2001-01-20 00:13:18 +0000 |
commit | 8a8ae2111161cebbf2956ed0dc6ec4e8fffff1d9 (patch) | |
tree | 4788c1f8cb19ca195bc4e0c164d55776ded0371b /security/apg/files | |
parent | ac89a44bcda81c2cf47ce05bacdce118f6e0a279 (diff) | |
download | FreeBSD-ports-8a8ae2111161cebbf2956ed0dc6ec4e8fffff1d9.zip FreeBSD-ports-8a8ae2111161cebbf2956ed0dc6ec4e8fffff1d9.tar.gz |
apg is an automated generator for pronounceable passwords.
Diffstat (limited to 'security/apg/files')
-rw-r--r-- | security/apg/files/patch-aa | 32 | ||||
-rw-r--r-- | security/apg/files/patch-ab | 15 |
2 files changed, 47 insertions, 0 deletions
diff --git a/security/apg/files/patch-aa b/security/apg/files/patch-aa new file mode 100644 index 0000000..9cda39f --- /dev/null +++ b/security/apg/files/patch-aa @@ -0,0 +1,32 @@ +--- Makefile 2000/09/30 14:55:17 1.1.1.1 ++++ Makefile 2001/01/17 14:12:15 1.3 +@@ -1,12 +1,13 @@ + # You can modify CC variable if you have compiler other than GCC + # But the code was designed and tested with GCC +-CC = gcc ++CC ?= gcc + + # compilation flags +-FLAGS = -Wall ++CFLAGS ?= -Wall + + # Install dirs +-INSTALL_PREFIX = /usr/local ++PREFIX ?= /usr/local ++INSTALL_PREFIX = ${PREFIX} + APG_BIN_DIR = /bin + APG_MAN_DIR = /man/man1 + APGD_BIN_DIR = /sbin +@@ -41,10 +42,10 @@ + cygwin: standalone + + cliserv: ${SOURCES} ${HEADERS} +- ${CC} ${FLAGS} ${CS_LIBS} -DCLISERV -o ${CS_PROGNAME} ${SOURCES} ++ ${CC} ${CFLAGS} ${CS_LIBS} -DCLISERV -o ${CS_PROGNAME} ${SOURCES} + + standalone: ${SOURCES} ${HEADERS} +- ${CC} ${FLAGS} -o ${PROGNAME} ${SOURCES} ++ ${CC} ${CFLAGS} -o ${PROGNAME} ${SOURCES} + + strip: + strip ${PROGNAME} diff --git a/security/apg/files/patch-ab b/security/apg/files/patch-ab new file mode 100644 index 0000000..d09733b --- /dev/null +++ b/security/apg/files/patch-ab @@ -0,0 +1,15 @@ +--- apg.c 2001/01/17 09:01:19 1.1.1.3 ++++ apg.c 2001/01/15 11:33:01 1.2 +@@ -342,9 +342,10 @@ + char * seq; + UINT32 prom = 0L; + +- printf ("\nPlease enter some random data (only first 4 are significant)\n"); ++ printf ("\nPlease enter some random data (only the first %d characters " ++ "are significant)\n", sizeof(prom)); + seq = (char *)getpass("(eg. your old password):>"); +- if (strlen(seq) < 4) ++ if (strlen(seq) < sizeof(prom)) + bcopy((void *)seq, (void *)&prom, (int)strlen(seq)); + else + bcopy((void *)seq, (void *)&prom, sizeof(prom)); |