diff options
author | Jukka Rissanen <jukka.rissanen@linux.intel.com> | 2013-02-13 17:29:00 +0200 |
---|---|---|
committer | Patrik Flykt <patrik.flykt@linux.intel.com> | 2013-02-19 12:51:41 +0200 |
commit | e12220c94a4fda7c987e24e3368e3f76760f18ec (patch) | |
tree | 03852435a240bc93920dd299d6352eb74e4862a1 /vpn/vpn-provider.c | |
parent | 0973548ef45ccc4c51bf1d091b725647c916f358 (diff) | |
download | connman-e12220c94a4fda7c987e24e3368e3f76760f18ec.tar.gz connman-e12220c94a4fda7c987e24e3368e3f76760f18ec.tar.bz2 connman-e12220c94a4fda7c987e24e3368e3f76760f18ec.zip |
vpn-provider: Make state debug print more useful
Print the state value as a string as it is useful information.
Diffstat (limited to 'vpn/vpn-provider.c')
-rw-r--r-- | vpn/vpn-provider.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vpn/vpn-provider.c b/vpn/vpn-provider.c index 8b68dba3..2519dd52 100644 --- a/vpn/vpn-provider.c +++ b/vpn/vpn-provider.c @@ -1179,9 +1179,8 @@ static int provider_indicate_state(struct vpn_provider *provider, { const char *str; - DBG("provider %p state %d", provider, state); - str = state2string(state); + DBG("provider %p state %s/%d", provider, str, state); if (str == NULL) return -EINVAL; |