svn commit: r259774 - head/usr.sbin/pkg

Baptiste Daroussin bapt at FreeBSD.org
Mon Dec 23 17:26:57 UTC 2013


Author: bapt
Date: Mon Dec 23 17:26:56 2013
New Revision: 259774
URL: http://svnweb.freebsd.org/changeset/base/259774

Log:
  Fix typos
  
  Reported by:	bryanv

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

Modified: head/usr.sbin/pkg/pkg.c
==============================================================================
--- head/usr.sbin/pkg/pkg.c	Mon Dec 23 17:16:44 2013	(r259773)
+++ head/usr.sbin/pkg/pkg.c	Mon Dec 23 17:26:56 2013	(r259774)
@@ -821,10 +821,10 @@ static const char confirmation_message[]
 "The package management tool is not yet installed on your system.\n"
 "Do you want to fetch and install it now? [y/N]: ";
 
-static const char non_interractive_message[] =
+static const char non_interactive_message[] =
 "The package management tool is not yet installed on your system.\n"
-"Please set ASSUME_ALWAYS_YES=yes environement variable to be able to boostrap "
-"in non-interractive (stdin not being a tty)\n";
+"Please set ASSUME_ALWAYS_YES=yes environment variable to be able to boostrap "
+"in non-interactive (stdin not being a tty)\n";
 
 static int
 pkg_query_yes_no(void)
@@ -945,7 +945,7 @@ main(int argc, char *argv[])
 		config_bool(ASSUME_ALWAYS_YES, &yes);
 		if (!yes) {
 			if (!isatty(fileno(stdin))) {
-				fprintf(stderr, non_interractive_message);
+				fprintf(stderr, non_interactive_message);
 				exit(EXIT_FAILURE);
 			}
 


More information about the svn-src-head mailing list