diff options
author | Denis Vlasenko | 2009-04-09 14:15:57 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-09 14:15:57 +0000 |
commit | 1943aec2ec390d9fda159aa0412362780ec83f09 (patch) | |
tree | ec9ddd365d2232d9fb621b79000cbf20f1410cda /shell/match.c | |
parent | efea9d2819165b414b81a47c8227ae007bd5382a (diff) | |
download | busybox-1943aec2ec390d9fda159aa0412362780ec83f09.zip busybox-1943aec2ec390d9fda159aa0412362780ec83f09.tar.gz |
hush: plug the leak of expanded heredoc
Diffstat (limited to 'shell/match.c')
-rw-r--r-- | shell/match.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/match.c b/shell/match.c index 0810fd8..47038d6 100644 --- a/shell/match.c +++ b/shell/match.c @@ -14,7 +14,6 @@ * * Original BSD copyright notice is retained at the end of this file. */ - #ifdef STANDALONE # include <stdbool.h> # include <stdio.h> @@ -22,7 +21,7 @@ # include <string.h> # include <unistd.h> #else -# include "busybox.h" +# include "libbb.h" #endif #include <fnmatch.h> #include "match.h" |