diff dbutil.h @ 948:f92eb625c48d

- Don't use multichar constants since recent gcc complains - Add release script - Simplify print_version
author Matt Johnston <matt@ucc.asn.au>
date Sun, 27 Jul 2014 22:55:29 +0800
parents 5daedffd0769
children 6fb4c010c448
line wrap: on
line diff
--- a/dbutil.h	Sun Jul 27 22:25:18 2014 +0800
+++ b/dbutil.h	Sun Jul 27 22:55:29 2014 +0800
@@ -62,9 +62,9 @@
 #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);