socsvn commit: r304217 - soc2016/yuanxunzhang/head/usr.sbin/eaps

yuanxunzhang at FreeBSD.org yuanxunzhang at FreeBSD.org
Tue May 31 04:21:36 UTC 2016


Author: yuanxunzhang
Date: Tue May 31 04:21:35 2016
New Revision: 304217
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=304217

Log:
  Modify eaps command modules

Modified:
  soc2016/yuanxunzhang/head/usr.sbin/eaps/eaps.c

Modified: soc2016/yuanxunzhang/head/usr.sbin/eaps/eaps.c
==============================================================================
--- soc2016/yuanxunzhang/head/usr.sbin/eaps/eaps.c	Tue May 31 04:12:21 2016	(r304216)
+++ soc2016/yuanxunzhang/head/usr.sbin/eaps/eaps.c	Tue May 31 04:21:35 2016	(r304217)
@@ -90,7 +90,7 @@
 createdomain(int argc, char **argv)
 {
 	int error = 0;
-	warnx("Create EAPS domain");
+	warnx("Create EAPS domain %s", *argv);
 	exit(error);
 }
 
@@ -98,7 +98,7 @@
 deletedomain(int argc, char **argv)
 {
 	int error = 0;
-	warnx("Delete EAPS domain");
+	warnx("Delete EAPS domain %s", *argv);
 	exit(error);
 }
 


More information about the svn-soc-all mailing list