From 2416abc367513f0277b66556b3c499e7bc9cf01e Mon Sep 17 00:00:00 2001 From: Burt P Date: Fri, 11 May 2018 21:00:59 -0500 Subject: vendor.c: fix vendor sort Fix a really stupid sort function I wrote for 60b9f3360930296c0f3e8b04672b8bf7468bedcb. Now actually does what that commit claims to do. I think I must have just sketched it out and then forgot to go back and correct it. It's weird that it happened to fix the one result I was testing for. Signed-off-by: Burt P --- includes/vendor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/vendor.h') diff --git a/includes/vendor.h b/includes/vendor.h index 21d52562..021f4e78 100644 --- a/includes/vendor.h +++ b/includes/vendor.h @@ -22,7 +22,7 @@ typedef struct _Vendor Vendor; struct _Vendor { char *match_string; - int match_case; /* 0 = ignore case, 1 = match case*/ + int match_case; /* 0 = ignore case, 1 = match case */ char *name; char *url; }; -- cgit v1.2.3