commit | 05e782ddd3dc58245c889529bb8aeeaddf24bf71 | [log] [tgz] |
---|---|---|
author | Matt Kraai <kraai@debian.org> | Thu Feb 01 16:49:30 2001 +0000 |
committer | Matt Kraai <kraai@debian.org> | Thu Feb 01 16:49:30 2001 +0000 |
tree | 8fbb91ca75358923724889a558c954cffdf10136 | |
parent | bd018b1babf0521b8e740abb6473133c1c4c35d2 [diff] [blame] |
Fix wget error message and add (and use) chomp library function.
diff --git a/utility.c b/utility.c index 3119269..0a0e652 100644 --- a/utility.c +++ b/utility.c
@@ -1760,6 +1760,19 @@ } #endif +#if defined(BB_GREP) || defined(BB_HOSTNAME) || defined(BB_SED) || defined(BB_TAR) || defined(BB_WGET) || defined(BB_XARGS) +void chomp(char *s) +{ + size_t len = strlen(s); + + if (len == 0) + return; + + if (s[len-1] == '\n') + s[len-1] = '\0'; +} +#endif + /* END CODE */ /* Local Variables: