summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgene <gene@openbsd.org>1997-11-17 14:01:28 +0000
committergene <gene@openbsd.org>1997-11-17 14:01:28 +0000
commitc005dd3b778b3fa41daeb2009a2b7f2b9fd7a93f (patch)
tree77b1e91a99b779f42aeab536a43f15535dce0625
parentCome to think of it the sun3 doesn't use dbsym anymore... (diff)
downloadwireguard-openbsd-c005dd3b778b3fa41daeb2009a2b7f2b9fd7a93f.tar.xz
wireguard-openbsd-c005dd3b778b3fa41daeb2009a2b7f2b9fd7a93f.zip
Fix a pretty embarrassing typo in the Usage help message.
Also, minor KNF whlle here.
-rw-r--r--usr.sbin/pkg_install/info/main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/pkg_install/info/main.c b/usr.sbin/pkg_install/info/main.c
index 1c2cb187869..fe74c00801c 100644
--- a/usr.sbin/pkg_install/info/main.c
+++ b/usr.sbin/pkg_install/info/main.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: main.c,v 1.3 1997/01/15 23:44:11 millert Exp $ */
+/* $OpenBSD: main.c,v 1.4 1997/11/17 14:01:28 gene Exp $ */
#ifndef lint
-static char *rcsid = "$OpenBSD: main.c,v 1.3 1997/01/15 23:44:11 millert Exp $";
+static char *rcsid = "$OpenBSD: main.c,v 1.4 1997/11/17 14:01:28 gene Exp $";
#endif
/*
@@ -33,9 +33,9 @@ static char Options[] = "acdDe:fikrRpLqImvhl:";
int Flags = 0;
Boolean AllInstalled = FALSE;
Boolean Quiet = FALSE;
-char *InfoPrefix = "";
-char PlayPen[FILENAME_MAX];
-char *CheckPkg = NULL;
+char *InfoPrefix = "";
+char PlayPen[FILENAME_MAX];
+char *CheckPkg = NULL;
int
main(int argc, char **argv)
@@ -173,7 +173,7 @@ usage(const char *name, const char *fmt, ...)
fprintf(stderr, "-R show packages depending on this package\n");
fprintf(stderr, "-p show prefix\n");
fprintf(stderr, "-l <str> Prefix each info catagory with <str>\n");
- fprintf(stderr, "-L show intalled files\n");
+ fprintf(stderr, "-L show installed files\n");
fprintf(stderr, "-q minimal output (``quiet'' mode)\n");
fprintf(stderr, "-v show all information\n");
fprintf(stderr, "-t temp use temp as template for mktemp()\n");