diff options
author | dim <dim@FreeBSD.org> | 2011-12-19 20:38:26 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-12-19 20:38:26 +0000 |
commit | 902ff105eca713459430f43952501314d5060350 (patch) | |
tree | 10f2f89577e6344b0032c13478eecc90bfc5e634 /usr.sbin/uhsoctl | |
parent | 4ae7354b148831bc4303c567d170b2461817c9d9 (diff) | |
download | FreeBSD-src-902ff105eca713459430f43952501314d5060350.zip FreeBSD-src-902ff105eca713459430f43952501314d5060350.tar.gz |
In usr.sbin/uhsoctl/uhsoctl.c, fix a few warnings about format strings
not being literals.
MFC after: 1 week
Diffstat (limited to 'usr.sbin/uhsoctl')
-rw-r--r-- | usr.sbin/uhsoctl/uhsoctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/uhsoctl/uhsoctl.c b/usr.sbin/uhsoctl/uhsoctl.c index a612364..421bf81 100644 --- a/usr.sbin/uhsoctl/uhsoctl.c +++ b/usr.sbin/uhsoctl/uhsoctl.c @@ -340,7 +340,7 @@ logger(int pri, const char *fmt, ...) va_start(ap, fmt); vasprintf(&buf, fmt, ap); if (syslog_open) - syslog(pri, buf); + syslog(pri, "%s", buf); else { switch (pri) { case LOG_INFO: @@ -1174,7 +1174,7 @@ do_connect(struct ctx *ctx, const char *tty) buf = ra.val[0].ptr; if (strstr(buf[0], "+CME ERROR:") != NULL) { buf[0] += 12; - errx(1, buf[0]); + errx(1, "%s", buf[0]); } freeresp(&ra); } else |