Author: jow Date: 2015-01-26 00:33:49 +0100 (Mon, 26 Jan 2015) New Revision: 44149
Modified: trunk/package/utils/px5g/Makefile trunk/package/utils/px5g/px5g.c Log: fix subject in generated certificates Signed-off-by: Jo-Philipp Wich <[email protected]> Modified: trunk/package/utils/px5g/Makefile =================================================================== --- trunk/package/utils/px5g/Makefile 2015-01-25 22:35:21 UTC (rev 44148) +++ trunk/package/utils/px5g/Makefile 2015-01-25 23:33:49 UTC (rev 44149) @@ -1,5 +1,5 @@ # -# Copyright (C) 2010-2014 Jo-Philipp Wich <[email protected]> +# Copyright (C) 2010-2015 Jo-Philipp Wich <[email protected]> # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,9 +8,8 @@ include $(TOPDIR)/rules.mk PKG_NAME:=px5g -PKG_RELEASE:=2 +PKG_RELEASE:=3 -PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT) PKG_USE_MIPS16:=0 include $(INCLUDE_DIR)/package.mk @@ -19,7 +18,7 @@ SECTION:=utils CATEGORY:=Utilities TITLE:=X.509 certificate generator (using PolarSSL) - MAINTAINER:=Jo-Philipp Wich <[email protected]> + MAINTAINER:=Jo-Philipp Wich <[email protected]> DEPENDS:=+libpolarssl endef Modified: trunk/package/utils/px5g/px5g.c =================================================================== --- trunk/package/utils/px5g/px5g.c 2015-01-25 22:35:21 UTC (rev 44148) +++ trunk/package/utils/px5g/px5g.c 2015-01-25 23:33:49 UTC (rev 44149) @@ -188,7 +188,7 @@ } memcpy(newc, oldc, delim - oldc); newc += delim - oldc; - *newc++ = ';'; + *newc++ = ','; oldc = delim + 1; } while(*delim); arg++; _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
