px5g-standalone: activate format-security checks
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 47583
This commit is contained in:
parent
312bf97cf1
commit
f6fe072836
@ -11,7 +11,6 @@ PKG_NAME:=px5g-standalone
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
PKG_CHECK_FORMAT_SECURITY:=0
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
|
@ -570,7 +570,7 @@ static int x509write_file(x509_node *node, char *path, int format,
|
||||
break;
|
||||
|
||||
case X509_OUTPUT_PEM:
|
||||
if (fprintf(ofstream,pem_prolog)<0) {
|
||||
if (fprintf(ofstream, "%s", pem_prolog)<0) {
|
||||
is_err = -1;
|
||||
break;
|
||||
}
|
||||
@ -589,7 +589,7 @@ static int x509write_file(x509_node *node, char *path, int format,
|
||||
fprintf(ofstream,"%.64s\n",&base_buf[i]);
|
||||
}
|
||||
|
||||
if (fprintf(ofstream, pem_epilog)<0) {
|
||||
if (fprintf(ofstream, "%s", pem_epilog)<0) {
|
||||
is_err = -1;
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user