diff options
author | adam <adam@FreeBSD.org> | 1996-08-29 04:19:06 +0000 |
---|---|---|
committer | adam <adam@FreeBSD.org> | 1996-08-29 04:19:06 +0000 |
commit | f7fbd0c29c36d18182993c3e8056b95a68885125 (patch) | |
tree | 3de1367e2e1769ad42314672f813d3e9f075dc3a /www/wn | |
parent | a8b8eedfe02b8e55f82e4fa45c172b39415ebf4e (diff) | |
download | FreeBSD-ports-f7fbd0c29c36d18182993c3e8056b95a68885125.zip FreeBSD-ports-f7fbd0c29c36d18182993c3e8056b95a68885125.tar.gz |
forgot to cvs add
Diffstat (limited to 'www/wn')
-rw-r--r-- | www/wn/files/patch-ab | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/www/wn/files/patch-ab b/www/wn/files/patch-ab new file mode 100644 index 0000000..1d94f7c --- /dev/null +++ b/www/wn/files/patch-ab @@ -0,0 +1,107 @@ +*** authwn/authwn.c.old Fri May 24 16:32:44 1996 +--- authwn/authwn.c Thu Aug 29 02:09:41 1996 +*************** +*** 27,32 **** +--- 27,35 ---- + + #ifdef DBM_AUTH + #include <dbm.h> ++ #elif defined(DB_AUTH) ++ #include <fcntl.h> ++ #include <db.h> + #endif + + #include "../config.h" +*************** +*** 123,128 **** +--- 126,135 ---- + #ifdef DBM_AUTH + datum content, + key; ++ #elif defined(DB_AUTH) ++ DBT content, ++ key; ++ DB *db; + #endif + + +*************** +*** 168,173 **** +--- 175,193 ---- + codedpw[content.dsize] = '\0'; + } + dbmclose( pwpath); ++ #elif defined(DB_AUTH) ++ key.data = user; ++ key.size = strlen(user); ++ ++ db = dbopen(pwpath, O_RDONLY, 0, DB_HASH, NULL); ++ if (db == NULL) { ++ exit(AUTHERR_NUM5); ++ } ++ if ((db->get)(db , &key, &content, 0) == 0) { ++ strncpy(codedpw, content.data, content.size); ++ codedpw[content.size] = '\0'; ++ } ++ (db->close)(db); + #else + exit( AUTHERR_NUM8); + #endif +*** authwn/Makefile.old Thu Jul 13 07:17:29 1995 +--- authwn/Makefile Wed Aug 28 19:46:22 1996 +*************** +*** 4,20 **** + #You will likely have to change DBMLIB to whatever library contains + # the DBM functions dbminit(), fetch() and dbmclose() on your system. + #DBMLIB = -ldbm +! #DBMFLAG = -DDBM_AUTH + +! +! CFLAGS = -I../wn/ -O $(DBMFLAG) + + OBJS = authwn.o + + all: authwn + + authwn: $(OBJS) +! $(CC) $(CFLAGS) -o authwn $(OBJS) $(LIBS) $(DBMLIB) + + install: authwn + @echo "Installing authwn in $(BINDIR)" +--- 4,20 ---- + #You will likely have to change DBMLIB to whatever library contains + # the DBM functions dbminit(), fetch() and dbmclose() on your system. + #DBMLIB = -ldbm +! DBMFLAG = -DDB_AUTH + +! DCFLAGS= -I../wn/ -O +! CFLAGS = $(DCFLAGS) $(DBMFLAG) + + OBJS = authwn.o + + all: authwn + + authwn: $(OBJS) +! $(CC) $(DCFLAGS) -o authwn $(OBJS) $(LIBS) $(DBMLIB) + + install: authwn + @echo "Installing authwn in $(BINDIR)" +*** Makefile.old Wed Aug 28 19:29:10 1996 +--- Makefile Wed Aug 28 19:48:33 1996 +*************** +*** 64,70 **** + + authwn/authwn: config.h + @echo "Making authwn" +! (cd authwn; $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" LIBS="$(LIBS)" \ + BINDIR="$(BINDIR)" ) + + inst-wn: +--- 64,70 ---- + + authwn/authwn: config.h + @echo "Making authwn" +! (cd authwn; $(MAKE) CC="$(CC)" DCFLAGS="$(CFLAGS)" LIBS="$(LIBS)" \ + BINDIR="$(BINDIR)" ) + + inst-wn: |