diff options
author | bde <bde@FreeBSD.org> | 1998-08-02 16:06:35 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-02 16:06:35 +0000 |
commit | b7b0859c3f4470d1bd2770f26c5af6f037833993 (patch) | |
tree | f19b09078f6555282c806798e61ed7b7b564fa2c /sbin/slattach | |
parent | dbc09be291ed507f26f3b2f3fbad6b02ef6bf476 (diff) | |
download | FreeBSD-src-b7b0859c3f4470d1bd2770f26c5af6f037833993.zip FreeBSD-src-b7b0859c3f4470d1bd2770f26c5af6f037833993.tar.gz |
Fixed printf format errors.
Diffstat (limited to 'sbin/slattach')
-rw-r--r-- | sbin/slattach/slattach.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/slattach/slattach.c b/sbin/slattach/slattach.c index 9edf888..892560c 100644 --- a/sbin/slattach/slattach.c +++ b/sbin/slattach/slattach.c @@ -42,7 +42,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)slattach.c 4.6 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: slattach.c,v 1.31 1998/02/20 07:28:50 jb Exp $"; +static char rcsid[] = "$Id: slattach.c,v 1.32 1998/06/28 20:33:36 bde Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -429,7 +429,9 @@ void configure_network() if (unit < 0) unit = new_unit; if (new_unit != unit) { - syslog(LOG_ERR, "slip unit changed from sl%d to sl%d, but no -u CMD was specified!"); + syslog(LOG_ERR, + "slip unit changed from sl%d to sl%d, but no -u CMD was specified!", + unit, new_unit); exit_handler(1); } syslog(LOG_NOTICE,"sl%d connected to %s at %d baud",unit,dev,speed); |