Skip to content

Commit 39ce9e6

Browse files
committed
clang-format: quote file pattern; stub: remove errno
Signed-off-by: Hans Zandbelt <[email protected]>
1 parent d8191b3 commit 39ce9e6

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ EXTRA_DIST = \
1111
auth_openidc.conf
1212

1313
clang-format:
14-
clang-format -style=file -i $$(find . -maxdepth 3 -name *.[ch])
14+
clang-format -style=file -i $$(find . -maxdepth 3 -name \*\.[ch])
1515

1616
valgrind check-code-coverage: check
1717
${MAKE} -C test $@

test/stub.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,9 +328,6 @@ ap_timeout_parameter_parse(const char *timeout_parameter, apr_interval_time_t *t
328328
apr_int64_t tout;
329329

330330
tout = apr_strtoi64(timeout_parameter, &endp, 10);
331-
if (errno) {
332-
return errno;
333-
}
334331
if (!endp || !*endp) {
335332
time_str = default_time_unit;
336333
} else {

0 commit comments

Comments
 (0)