summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2014-01-13 21:02:51 +0100
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>2014-01-13 21:02:51 +0100
commitcbc902a2815a3753441fe69efa0287239ecf4f4a (patch)
treef8c1f7bb6726f81e8650511b2d46a1be1f6c1a4d
parent4d2e5e4976a24d8e308c3fbb96402c384812dc39 (diff)
downloadmicrocom-cbc902a2815a3753441fe69efa0287239ecf4f4a.tar.gz
microcom-cbc902a2815a3753441fe69efa0287239ecf4f4a.tar.xz
release 2014.01.1v2014.01.1
-rw-r--r--ChangeLog23
-rw-r--r--Makefile2
2 files changed, 24 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 69253a6..b93e3c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+2014-01-13 Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
+
+ * ChangeLog, Makefile: release 2014.01.1
+
+ * microcom.c: Fix compiler warnings and segfault Commit 3337bd893b6b dropped
+ the comma at the end of the format string by mistake resulting in several
+ compiler warnings: microcom.c:150:3: warning: format ‘%s’ expects
+ argument of type ‘char *’, but argument 3 has type ‘int’ [-Wformat]
+ microcom.c:150:3: warning: format ‘%d’ expects argument of type
+ ‘int’, but argument 4 has type ‘char *’ [-Wformat] microcom.c:150:3:
+ warning: format ‘%s’ expects argument of type ‘char *’, but argument
+ 5 has type ‘int’ [-Wformat] microcom.c:150:3: warning: format ‘%x’
+ expects a matching ‘unsigned int’ argument [-Wformat] and a segfault
+ when main_usage is called. So readd that comma. Fixes: 3337bd893b6b (fix
+ help string to include -d and -f)
+
+ * .gitignore: .gitignore: don't ignore .gitignore, anchor microcom entry
+
+ * commands.c, commands_fsl_imx.c, parser.c: Add explicit copyright and
+ license to three files These files were only touched by Sascha and Marc back
+ in 2010. Acked-by: Marc Kleine-Budde <mkl@pengutronix.de> Acked-by: Sascha
+ Hauer <s.hauer@pengutronix.de>
+
2014-01-10 Uwe Kleine-König <uwe@kleine-koenig.org>
* ChangeLog, Makefile: release 2014.01.0
diff --git a/Makefile b/Makefile
index cb3f4e3..7e4ad85 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@
CFLAGS += -Wall -O2 -g
LDLIBS += -lreadline -lpthread
-CPPFLAGS += -DPKG_VERSION="\"2014.01.0\"" -DPF_CAN=29 -DAF_CAN=PF_CAN
+CPPFLAGS += -DPKG_VERSION="\"2014.01.1\"" -DPF_CAN=29 -DAF_CAN=PF_CAN
microcom: microcom.o mux.o serial.o telnet.o can.o commands.o parser.o commands_fsl_imx.o