summaryrefslogtreecommitdiff
path: root/src/script.c
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2014-04-30 17:49:32 +0200
committerSteven Barth <steven@midlink.org>2014-04-30 17:49:32 +0200
commita0bbaf5bffc66b1693577a374a9a599e313aefe1 (patch)
tree8062e26d12ded6cce8a92cda3d2d649fd1c335ae /src/script.c
parent21ca19406b02b99eb7f1db1b83e9f0a59c664d32 (diff)
downloadodhcp6c-a0bbaf5bffc66b1693577a374a9a599e313aefe1.tar.gz
Fix compiler warning
Diffstat (limited to 'src/script.c')
-rw-r--r--src/script.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/script.c b/src/script.c
index 5ddd6c5..13ac562 100644
--- a/src/script.c
+++ b/src/script.c
@@ -229,8 +229,6 @@ static void s46_to_env(enum odhcp6c_state state, const uint8_t *data, size_t len
{
const char *name = (state == STATE_S46_MAPE) ? "MAPE" :
(state == STATE_S46_MAPT) ? "MAPT" : "LW4O6";
- const char *type = (state == STATE_S46_MAPE) ? "map-e" :
- (state == STATE_S46_MAPT) ? "map-t" : "lw4o6";
char *str;
size_t strsize;
@@ -240,6 +238,9 @@ static void s46_to_env(enum odhcp6c_state state, const uint8_t *data, size_t len
fputc('=', fp);
#ifdef EXT_S46
+ const char *type = (state == STATE_S46_MAPE) ? "map-e" :
+ (state == STATE_S46_MAPT) ? "map-t" : "lw4o6";
+
uint8_t *odata;
uint16_t otype, olen;
dhcpv6_for_each_option(data, &data[len], otype, olen, odata) {