home *** CD-ROM | disk | FTP | other *** search
- *** ../old/Makefile Wed Apr 6 15:38:24 1994
- --- ./Makefile Fri Apr 22 11:07:41 1994
- ***************
- *** 1,6 ****
- # Makefile for envv.
-
- ! VERSION=1.2
-
- SRCS=envv.c
- FILES=$(SRCS) Makefile README envv.1
- --- 1,6 ----
- # Makefile for envv.
-
- ! VERSION=1.3
-
- SRCS=envv.c
- FILES=$(SRCS) Makefile README envv.1
- *** ../old/README Mon Apr 18 12:17:06 1994
- --- ./README Tue May 10 10:32:02 1994
- ***************
- *** 30,35 ****
- --- 30,42 ----
-
- CHANGES TO ENVV:
-
- + * Version 1.3 (10 May 1994)
- +
- + + Bug fixes
- +
- + - I was freeing a string after sending it to putenv(). Bad news.
- + This patch fixes that.
- +
- * Version 1.2 (18 April 1994)
-
- + Enhancements
- *** ../old/envv.c Fri Apr 22 10:32:15 1994
- --- ./envv.c Tue May 10 10:28:07 1994
- ***************
- *** 31,37 ****
- /* If no commands given on command line, read from stdin */
- /* */
- /***************************************************************/
- ! #define VERSION "1.2"
-
- /* I need to use malloc. If its prototype is in malloc.h, #define
- NEED_MALLOC_H. */
- --- 31,37 ----
- /* If no commands given on command line, read from stdin */
- /* */
- /***************************************************************/
- ! #define VERSION "1.3"
-
- /* I need to use malloc. If its prototype is in malloc.h, #define
- NEED_MALLOC_H. */
- ***************
- *** 639,645 ****
- if (!UseCmdLine) {
- *--s = 0;
- putenv(envstr);
- - free(envstr);
- }
-
-
- --- 639,644 ----
-