aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/blkid/read.c
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 15:09:17 +0000
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-07-01 15:09:17 +0000
commit7ccb65f3a4f5c84d010978d450df57d3c1b13297 (patch)
tree1a8ad50d798ce0a176c20b817d53ffaead21b14c /e2fsprogs/blkid/read.c
parentd35ef0f66643f2bc43bd7070df0356e0b064b755 (diff)
downloadbusybox-w32-7ccb65f3a4f5c84d010978d450df57d3c1b13297.tar.gz
busybox-w32-7ccb65f3a4f5c84d010978d450df57d3c1b13297.tar.bz2
busybox-w32-7ccb65f3a4f5c84d010978d450df57d3c1b13297.zip
Yet more "#if 0" content removed.
Diffstat (limited to 'e2fsprogs/blkid/read.c')
-rw-r--r--e2fsprogs/blkid/read.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/e2fsprogs/blkid/read.c b/e2fsprogs/blkid/read.c
index 5f7422b0c..a2a8bb59e 100644
--- a/e2fsprogs/blkid/read.c
+++ b/e2fsprogs/blkid/read.c
@@ -98,31 +98,6 @@ static char *strip_line(char *line)
98 return line; 98 return line;
99} 99}
100 100
101#if 0
102static char *parse_word(char **buf)
103{
104 char *word, *next;
105
106 word = *buf;
107 if (*word == '\0')
108 return NULL;
109
110 word = skip_over_blank(word);
111 next = skip_over_word(word);
112 if (*next) {
113 char *end = next - 1;
114 if (*end == '"' || *end == '\'')
115 *end = '\0';
116 *next++ = '\0';
117 }
118 *buf = next;
119
120 if (*word == '"' || *word == '\'')
121 word++;
122 return word;
123}
124#endif
125
126/* 101/*
127 * Start parsing a new line from the cache. 102 * Start parsing a new line from the cache.
128 * 103 *