mirror of
https://github.com/libssh2/libssh2.git
synced 2026-01-27 00:18:12 +03:00
- fix compiler warnings.
- make it pass `checksrc`.
- fix shell `set -u` errors.
Follow-up to 5012442850 #901
- REUSE: tidy up ossfuzz files.
Cherry-picked from #1484
Closes #1526
11 lines
260 B
Bash
Executable File
11 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) The libssh2 project and its contributors.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
git ls-files "*.[ch]" "*.cc" | xargs -n1 \
|
|
./ci/checksrc.pl -i4 -m79 -AFOPENMODE -ASNPRINTF -ATYPEDEFSTRUCT
|