summaryrefslogtreecommitdiffhomepage
path: root/dbutil.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2014-07-27 22:55:29 +0800
committerMatt Johnston <matt@ucc.asn.au>2014-07-27 22:55:29 +0800
commit923fc9087c10a7a2bf4941e3e25f20229b3e5eec (patch)
treea8a5ef8f3483d93f2493d26d235d0445073f823c /dbutil.h
parent83511fecc0d235cbf7173faf788c934e13c5877f (diff)
- Don't use multichar constants since recent gcc complains
- Add release script - Simplify print_version
Diffstat (limited to 'dbutil.h')
-rw-r--r--dbutil.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbutil.h b/dbutil.h
index 8110ffc..4dd05b5 100644
--- a/dbutil.h
+++ b/dbutil.h
@@ -62,9 +62,9 @@ extern int debug_trace;
#endif
enum dropbear_prio {
- DROPBEAR_PRIO_DEFAULT = 'dffd',
- DROPBEAR_PRIO_LOWDELAY = 'lddl',
- DROPBEAR_PRIO_BULK = 'bllb',
+ DROPBEAR_PRIO_DEFAULT = 10,
+ DROPBEAR_PRIO_LOWDELAY = 11,
+ DROPBEAR_PRIO_BULK = 12,
};
char * stripcontrol(const char * text);