Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 May 2016 04:21:35 GMT
From:      yuanxunzhang@FreeBSD.org
To:        svn-soc-all@FreeBSD.org
Subject:   socsvn commit: r304217 - soc2016/yuanxunzhang/head/usr.sbin/eaps
Message-ID:  <201605310421.u4V4LZqr031028@socsvn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 }
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605310421.u4V4LZqr031028>