summaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-09-08 03:11:58 +0000
committerRob Landley <rob@landley.net>2005-09-08 03:11:58 +0000
commit658d2cf98616e377fdcf8cde380fec10d966a689 (patch)
treeded519582e91404e7439409ee62e6abe302f238c /miscutils
parent02eb934b0f7120cfb783536d6b27f7e092fb991b (diff)
downloadbusybox-w32-658d2cf98616e377fdcf8cde380fec10d966a689.tar.gz
busybox-w32-658d2cf98616e377fdcf8cde380fec10d966a689.tar.bz2
busybox-w32-658d2cf98616e377fdcf8cde380fec10d966a689.zip
Tito sent in a few patches converting instances of CONFIG_FEATURE_CLEAN_UP to
ENABLE_FEATURE_CLEAN_UP.
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/strings.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/strings.c b/miscutils/strings.c
index d0a092421..111aa94ba 100644
--- a/miscutils/strings.c
+++ b/miscutils/strings.c
@@ -99,9 +99,9 @@ PIPE:
99 status=EXIT_FAILURE; 99 status=EXIT_FAILURE;
100 } 100 }
101 } while ( --argc > 0 ); 101 } while ( --argc > 0 );
102#ifdef CONFIG_FEATURE_CLEAN_UP 102
103 free(string); 103 if (ENABLE_FEATURE_CLEAN_UP) free(string);
104#endif 104
105 bb_fflush_stdout_and_exit(status); 105 bb_fflush_stdout_and_exit(status);
106} 106}
107 107