summaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-09-22 13:49:13 +0000
committerTiago Cunha <tcunha@gmx.com>2009-09-22 13:49:13 +0000
commitf2d249fdc7449396d88efb3ee7ff957eba26c4dd (patch)
treedb57d0741b3c80cd328d1ea0bda39fdcda3db35e /options.c
parentc28d4e41cf7ca243287975e9fb1212af140bc48d (diff)
Sync OpenBSD patchset 337:
Drop tiny union from option struct.
Diffstat (limited to 'options.c')
-rw-r--r--options.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/options.c b/options.c
index 7f963ead..ff29c2ec 100644
--- a/options.c
+++ b/options.c
@@ -1,4 +1,4 @@
-/* $Id: options.c,v 1.6 2009-07-22 17:46:53 tcunha Exp $ */
+/* $Id: options.c,v 1.7 2009-09-22 13:49:13 tcunha Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -53,7 +53,7 @@ options_free(struct options *oo)
SPLAY_REMOVE(options_tree, &oo->tree, o);
xfree(o->name);
if (o->type == OPTIONS_STRING)
- xfree(o->value.string);
+ xfree(o->str);
xfree(o);
}
}
@@ -94,7 +94,7 @@ options_remove(struct options *oo, const char *name)
SPLAY_REMOVE(options_tree, &oo->tree, o);
xfree(o->name);
if (o->type == OPTIONS_STRING)
- xfree(o->value.string);
+ xfree(o->str);
xfree(o);
}
@@ -109,11 +109,11 @@ options_set_string(struct options *oo, const char *name, const char *fmt, ...)
o->name = xstrdup(name);
SPLAY_INSERT(options_tree, &oo->tree, o);
} else if (o->type == OPTIONS_STRING)
- xfree(o->value.string);
+ xfree(o->str);
va_start(ap, fmt);
o->type = OPTIONS_STRING;
- xvasprintf(&o->value.string, fmt, ap);
+ xvasprintf(&o->str, fmt, ap);
va_end(ap);
}
@@ -126,7 +126,7 @@ options_get_string(struct options *oo, const char *name)
fatalx("missing option");
if (o->type != OPTIONS_STRING)
fatalx("option not a string");
- return (o->value.string);
+ return (o->str);
}
void
@@ -139,10 +139,10 @@ options_set_number(struct options *oo, const char *name, long long value)
o->name = xstrdup(name);
SPLAY_INSERT(options_tree, &oo->tree, o);
} else if (o->type == OPTIONS_STRING)
- xfree(o->value.string);
+ xfree(o->str);
o->type = OPTIONS_NUMBER;
- o->value.number = value;
+ o->num = value;
}
@@ -155,5 +155,5 @@ options_get_number(struct options *oo, const char *name)
fatalx("missing option");
if (o->type != OPTIONS_NUMBER)
fatalx("option not a number");
- return (o->value.number);
+ return (o->num);
}