diff options
author | Yang Gu <yang.gu@intel.com> | 2010-04-26 18:29:21 +0800 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-04-26 11:30:52 -0500 |
commit | 30644d81957cfefe99df5789ad2f65683123a4cd (patch) | |
tree | b75483e8e670b280a983db0c7b4cddc57c8b1e32 | |
parent | 7bf2dc97075a52b296112a0c069b1c202aca526d (diff) | |
download | ofono-30644d81957cfefe99df5789ad2f65683123a4cd.tar.bz2 |
stkutil: Fix the assignment to minimum set
-rw-r--r-- | src/stkutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stkutil.c b/src/stkutil.c index a457e36e..b4279c16 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -2053,7 +2053,7 @@ static gboolean parse_dataobj(struct comprehension_tlv_iter *iter, if ((entry->flags & DATAOBJ_FLAG_MINIMUM) && entry->parsed == FALSE) - minimum_set = TRUE; + minimum_set = FALSE; } g_slist_foreach(entries, (GFunc)g_free, NULL); |