tSet error values explicitely - sick - sign and check files using ed25519
HTML git clone git://z3bra.org/sick
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 414648b3011b742fb82ee6e2f997973d43184345
DIR parent 4b03fa5a2808b3ed5ca9aac689e2494ded2a4b20
HTML Author: z3bra <willyatmailoodotorg>
Date: Mon, 16 May 2016 12:12:51 +0200
Set error values explicitely
Diffstat:
M sick.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/sick.c b/sick.c
t@@ -18,9 +18,9 @@ enum {
};
enum {
- ERR_NOKEY,
- ERR_NOSIG,
- ERR_NOMSG
+ ERR_NOKEY = 1,
+ ERR_NOSIG = 2,
+ ERR_NOMSG = 3
};
static void usage();