diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-07-27 22:55:29 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-07-27 22:55:29 +0800 |
commit | 923fc9087c10a7a2bf4941e3e25f20229b3e5eec (patch) | |
tree | a8a5ef8f3483d93f2493d26d235d0445073f823c /dbutil.h | |
parent | 83511fecc0d235cbf7173faf788c934e13c5877f (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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |