summaryrefslogtreecommitdiff
path: root/gdhcp/client.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-09-11 12:36:44 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-09-11 12:36:44 +0200
commit39deefcac116a8979a439024f3e5a1c41e4b9c13 (patch)
tree9bab0d0ed2bb537c66d1f60a3894f26409b00732 /gdhcp/client.c
parentbae6cdc4e55f1523b1602159331b73a3deb86984 (diff)
downloadconnman-39deefcac116a8979a439024f3e5a1c41e4b9c13.tar.gz
connman-39deefcac116a8979a439024f3e5a1c41e4b9c13.tar.bz2
connman-39deefcac116a8979a439024f3e5a1c41e4b9c13.zip
Remove two pointless whitespaces
Diffstat (limited to 'gdhcp/client.c')
-rw-r--r--gdhcp/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdhcp/client.c b/gdhcp/client.c
index 1919af79..b9a0e7fc 100644
--- a/gdhcp/client.c
+++ b/gdhcp/client.c
@@ -919,12 +919,12 @@ static GList *get_option_value_list(char *value)
while ((pos = strchr(pos, ' ')) != NULL) {
*pos = '\0';
- list = g_list_append(list, g_strdup(value));
+ list = g_list_append(list, g_strdup(value));
value = ++pos;
}
- list = g_list_append(list, g_strdup(value));
+ list = g_list_append(list, g_strdup(value));
return list;
}