svn commit: r264533 - head/usr.sbin/ctld

Edward Tomasz Napierala trasz at FreeBSD.org
Wed Apr 16 11:05:57 UTC 2014


Author: trasz
Date: Wed Apr 16 11:05:57 2014
New Revision: 264533
URL: http://svnweb.freebsd.org/changeset/base/264533

Log:
  Use consistent punctuation.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/ctld/ctld.c

Modified: head/usr.sbin/ctld/ctld.c
==============================================================================
--- head/usr.sbin/ctld/ctld.c	Wed Apr 16 11:03:21 2014	(r264532)
+++ head/usr.sbin/ctld/ctld.c	Wed Apr 16 11:05:57 2014	(r264533)
@@ -1214,7 +1214,7 @@ conf_apply(struct conf *oldconf, struct 
 			log_debugx("enabling CTL iSCSI port");
 			error = kernel_port_on();
 			if (error != 0)
-				log_errx(1, "failed to enable CTL iSCSI port, exiting");
+				log_errx(1, "failed to enable CTL iSCSI port; exiting");
 		} else {
 			error = kernel_port_off();
 			if (error != 0)
@@ -1839,7 +1839,7 @@ main(int argc, char **argv)
 	oldconf = conf_new_from_kernel();
 	newconf = conf_new_from_file(config_path);
 	if (newconf == NULL)
-		log_errx(1, "configuration error, exiting");
+		log_errx(1, "configuration error; exiting");
 	if (debug > 0) {
 		oldconf->conf_debug = debug;
 		newconf->conf_debug = debug;
@@ -1847,7 +1847,8 @@ main(int argc, char **argv)
 
 	error = conf_apply(oldconf, newconf);
 	if (error != 0)
-		log_errx(1, "failed to apply configuration, exiting");
+		log_errx(1, "failed to apply configuration; exiting");
+
 	conf_delete(oldconf);
 	oldconf = NULL;
 


More information about the svn-src-head mailing list