home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sources.unix
- From: gwr@mc.com (Gordon W. Ross)
- Subject: v28i119: bootp-2.4.0 - RFC 1048,1533 "bootp" server (updates V27I63), Patch01
- Sender: unix-sources-moderator@gw.home.vix.com
- Approved: vixie@gw.home.vix.com
-
- Submitted-By: gwr@mc.com (Gordon W. Ross)
- Posting-Number: Volume 28, Issue 119
- Archive-Name: bootp-2.4.0/patch01
-
- This is patch 1 for the bootp-2.4 release.
-
- This corrects a missing initialization that may cause junk
- to appear in the boot file name provided in a bootreply.
- (This problem does not appear when the :td: option is set.)
-
- diff -rc bootp-2.4.0/patchlevel.h bootp-2.4.1/patchlevel.h
- *** bootp-2.4.0/patchlevel.h Mon Aug 22 11:39:05 1994
- --- bootp-2.4.1/patchlevel.h Tue Aug 23 11:22:09 1994
- ***************
- *** 1,3 ****
- /* patchlevel.h */
- #define VERSION "2.4"
- ! #define PATCHLEVEL 0
- --- 1,3 ----
- /* patchlevel.h */
- #define VERSION "2.4"
- ! #define PATCHLEVEL 1
- diff -rc bootp-2.4.0/bootpd.c bootp-2.4.1/bootpd.c
- *** bootp-2.4.0/bootpd.c Mon Aug 22 12:51:16 1994
- --- bootp-2.4.1/bootpd.c Tue Aug 23 17:17:15 1994
- ***************
- *** 815,820 ****
- --- 815,821 ----
- strcpy(realpath, hp->tftpdir->string);
- clntpath = &realpath[strlen(realpath)];
- } else {
- + realpath[0] = '\0';
- clntpath = realpath;
- }
-
-