summaryrefslogtreecommitdiffstats
path: root/tty-term.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-01-01 03:32:28 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-01-01 03:32:28 +0000
commit5d0cfe079b5c1309c40fc5bfd76f7786059577d5 (patch)
treea9c351d830ca940a898a3fd36d873f8b6863c1e7 /tty-term.c
parent1c86713afd3e6d42547f64daa520992c74f3cdcd (diff)
Another table that should be const.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c31
1 files changed, 16 insertions, 15 deletions
diff --git a/tty-term.c b/tty-term.c
index 1566253d..efc962ec 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -32,7 +32,7 @@ char *tty_term_strip(const char *);
struct tty_terms tty_terms = SLIST_HEAD_INITIALIZER(tty_terms);
-struct tty_term_code_entry tty_term_codes[NTTYCODE] = {
+const struct tty_term_code_entry tty_term_codes[NTTYCODE] = {
{ TTYC_ACSC, TTYCODE_STRING, "acsc" },
{ TTYC_AX, TTYCODE_FLAG, "AX" },
{ TTYC_BEL, TTYCODE_STRING, "bel" },
@@ -214,13 +214,14 @@ tty_term_strip(const char *s)
void
tty_term_override(struct tty_term *term, const char *overrides)
{
- struct tty_term_code_entry *ent;
- struct tty_code *code;
- char *termnext, *termstr, *entnext, *entstr;
- char *s, *ptr, *val;
- const char *errstr;
- u_int i;
- int n, removeflag;
+ const struct tty_term_code_entry *ent;
+ struct tty_code *code;
+ char *termnext, *termstr;
+ char *entnext, *entstr;
+ char *s, *ptr, *val;
+ const char *errstr;
+ u_int i;
+ int n, removeflag;
s = xstrdup(overrides);
@@ -296,13 +297,13 @@ tty_term_override(struct tty_term *term, const char *overrides)
struct tty_term *
tty_term_find(char *name, int fd, const char *overrides, char **cause)
{
- struct tty_term *term;
- struct tty_term_code_entry *ent;
- struct tty_code *code;
- u_int i;
- int n, error;
- char *s;
- const char *acs;
+ struct tty_term *term;
+ const struct tty_term_code_entry *ent;
+ struct tty_code *code;
+ u_int i;
+ int n, error;
+ char *s;
+ const char *acs;
SLIST_FOREACH(term, &tty_terms, entry) {
if (strcmp(term->name, name) == 0) {