mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
main/bwm-ng: fix build with -Wformat -Werror=format-security
This commit is contained in:
parent
ed82d2e027
commit
23ed2dc8cd
@ -1,7 +1,7 @@
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=bwm-ng
|
||||
pkgver=0.6
|
||||
pkgrel=4
|
||||
pkgrel=5
|
||||
pkgdesc="A small and simple console-based live bandwidth monitor"
|
||||
url="http://www.gropp.org/"
|
||||
arch="all"
|
||||
@ -9,11 +9,17 @@ license="GPL2+"
|
||||
subpackages="$pkgname-doc"
|
||||
depends=""
|
||||
makedepends="ncurses-dev"
|
||||
source="http://www.gropp.org/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||
source="http://www.gropp.org/$pkgname/$pkgname-$pkgver.tar.gz
|
||||
format.patch"
|
||||
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
prepare() {
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
update_config_sub || return 1
|
||||
}
|
||||
|
||||
@ -36,6 +42,9 @@ package() {
|
||||
make -j1 DESTDIR="$pkgdir" install || return 1
|
||||
}
|
||||
|
||||
md5sums="d3a02484fb7946371bfb4e10927cebfb bwm-ng-0.6.tar.gz"
|
||||
sha256sums="c1134358e268329d438b0996399003b0f0b966034fb4b5b138761c2f3c62ffdd bwm-ng-0.6.tar.gz"
|
||||
sha512sums="7327ec848b0c18d68b2cb0a0ca570bb4d783b534186868d13b453346dbf3ddbcd7e1070803406ff207dc1fd00aa91c06187b0ea7fea28c6c006b44165331c21b bwm-ng-0.6.tar.gz"
|
||||
md5sums="d3a02484fb7946371bfb4e10927cebfb bwm-ng-0.6.tar.gz
|
||||
a81848e4b31745cc52ee3e890efdd6cf format.patch"
|
||||
sha256sums="c1134358e268329d438b0996399003b0f0b966034fb4b5b138761c2f3c62ffdd bwm-ng-0.6.tar.gz
|
||||
57d0a2eb25c89df67d9906ede623cc922aa6d28a61810e197740ef993274bea7 format.patch"
|
||||
sha512sums="7327ec848b0c18d68b2cb0a0ca570bb4d783b534186868d13b453346dbf3ddbcd7e1070803406ff207dc1fd00aa91c06187b0ea7fea28c6c006b44165331c21b bwm-ng-0.6.tar.gz
|
||||
1b662eeed76f5cb7291e0ab0399a0e8fc862eac036856ce03b23b6c220d6eb544834b4eb4973f570c1b8b70df8fd9f86ae4f7fd7d80aff01386fd52bf004e701 format.patch"
|
||||
|
||||
24
main/bwm-ng/format.patch
Normal file
24
main/bwm-ng/format.patch
Normal file
@ -0,0 +1,24 @@
|
||||
diff --git a/src/output.c b/src/output.c
|
||||
index e9b1442..c2a6b6e 100644
|
||||
--- a/src/output.c
|
||||
+++ b/src/output.c
|
||||
@@ -223,8 +223,8 @@ int print_header(int option) {
|
||||
fprintf(tmp_out_file,"<title>bwm-ng stats</title>\n</head>\n<body>\n");
|
||||
}
|
||||
fprintf(tmp_out_file,"<div class=\"bwm-ng-header\">bwm-ng bwm-ng v" VERSION " (refresh %is); input: ",html_refresh);
|
||||
- fprintf(tmp_out_file,input2str());
|
||||
- fprintf(tmp_out_file,show_all_if2str());
|
||||
+ fprintf(tmp_out_file,"%s",input2str());
|
||||
+ fprintf(tmp_out_file,"%s",show_all_if2str());
|
||||
fprintf(tmp_out_file,"</div><table class=\"bwm-ng-output\">");
|
||||
fprintf(tmp_out_file,"<tr class=\"bwm-ng-head\"><td class=\"bwm-ng-name\">Interface</td><td>Rx</td><td>Tx</td><td>Total</td></tr>");
|
||||
break;
|
||||
@@ -234,7 +234,7 @@ int print_header(int option) {
|
||||
if (output_method==PLAIN_OUT && ansi_output) printf("\033[1;2H");
|
||||
printf("bwm-ng v" VERSION " (delay %2.3fs); ",(float)delay/1000);
|
||||
if (output_method==PLAIN_OUT) printf("press 'ctrl-c' to end this%s",(ansi_output ? "\033[2;2H" : "")); else printf("input: ");
|
||||
- printf(input2str());
|
||||
+ printf("%s",input2str());
|
||||
printf("%s\n",show_all_if2str());
|
||||
if (output_method==PLAIN_OUT) {
|
||||
if (ansi_output)
|
||||
Loading…
x
Reference in New Issue
Block a user