From 20511656c21f33d0727c770400e9597a87775aa2 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 27 Oct 2013 16:09:44 +0000 Subject: delete duplicate NULL check and polish style; no functional change --- mandocdb.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mandocdb.c b/mandocdb.c index 95d511f7..a9e280c5 100644 --- a/mandocdb.c +++ b/mandocdb.c @@ -1,4 +1,4 @@ -/* $Id: mandocdb.c,v 1.73 2013/10/18 23:07:23 schwarze Exp $ */ +/* $Id: mandocdb.c,v 1.74 2013/10/27 16:09:44 schwarze Exp $ */ /* * Copyright (c) 2011, 2012 Kristaps Dzonsons * Copyright (c) 2011, 2012, 2013 Ingo Schwarze @@ -836,13 +836,13 @@ ofadd(int dform, const char *file, const char *name, const char *dsec, if (NULL == arch) arch = ""; - sform = FORM_NONE; - if (NULL != sec && *sec <= '9' && *sec >= '1') - sform = FORM_SRC; - else if (NULL != sec && *sec == '0') { + if ('0' == *sec) { sec = dsec; sform = FORM_CAT; - } + } else if ('1' <= *sec && '9' >= *sec) + sform = FORM_SRC; + else + sform = FORM_NONE; of = mandoc_calloc(1, sizeof(struct of)); strlcpy(of->file, file, PATH_MAX); -- cgit v1.2.3-56-ge451