diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-25 12:46:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-25 12:46:03 +0000 |
commit | d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8 (patch) | |
tree | 5f3775e14e05880c7977402384756e6ca3102096 /util-linux | |
parent | c8400a216206a848f6c4b83b668df37f6fb546ee (diff) | |
download | busybox-w32-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.tar.gz busybox-w32-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.tar.bz2 busybox-w32-d18a3a20dbafc4023b1c636b4e9b4bb80902c1e8.zip |
use skip_whitespace where appropriate
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mount.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 5ced48fea..2c5e23177 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
@@ -203,8 +203,7 @@ static llist_t *get_block_backed_filesystems(void) | |||
203 | while ((buf = xmalloc_getline(f)) != 0) { | 203 | while ((buf = xmalloc_getline(f)) != 0) { |
204 | if (!strncmp(buf, "nodev", 5) && isspace(buf[5])) | 204 | if (!strncmp(buf, "nodev", 5) && isspace(buf[5])) |
205 | continue; | 205 | continue; |
206 | fs = buf; | 206 | fs = skip_whitespace(buf); |
207 | while (isspace(*fs)) fs++; | ||
208 | if (*fs=='#' || *fs=='*' || !*fs) continue; | 207 | if (*fs=='#' || *fs=='*' || !*fs) continue; |
209 | 208 | ||
210 | llist_add_to_end(&list, xstrdup(fs)); | 209 | llist_add_to_end(&list, xstrdup(fs)); |