summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-03-22 18:20:02 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-03-22 18:20:02 +0000
commitc88a46b5d65f79ae7534458334af7b8ea47b443f (patch)
tree3120256ff6bde142ab8581470ad79c3603335a49
parent0d0ab49cc41331f92272a6e08ccfd6cf2b7bff20 (diff)
typo in ERROR_NOTFOUND error message
-rw-r--r--lib/libkeynote/sample-app.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libkeynote/sample-app.c b/lib/libkeynote/sample-app.c
index 79cf874f401..6475ebd08d1 100644
--- a/lib/libkeynote/sample-app.c
+++ b/lib/libkeynote/sample-app.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sample-app.c,v 1.3 2001/03/22 01:16:02 millert Exp $ */
+/* $OpenBSD: sample-app.c,v 1.4 2001/03/22 18:20:01 millert Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
*
@@ -363,7 +363,7 @@ main(int argc, char **argv)
break;
case ERROR_NOTFOUND:
- fprintf(stderr, "Session %d not found while addiing action "
+ fprintf(stderr, "Session %d not found while adding action "
"attribute [app_domain = \"test application\"]\n",
sessionid);
break;
@@ -391,7 +391,7 @@ main(int argc, char **argv)
break;
case ERROR_NOTFOUND:
- fprintf(stderr, "Session %d not found while addiing action "
+ fprintf(stderr, "Session %d not found while adding action "
"attribute [some_num = \"1\"]\n", sessionid);
break;
@@ -418,7 +418,7 @@ main(int argc, char **argv)
break;
case ERROR_NOTFOUND:
- fprintf(stderr, "Session %d not found while addiing action "
+ fprintf(stderr, "Session %d not found while adding action "
"attribute [some_var = \"some other value\"]\n",
sessionid);
break;
@@ -446,7 +446,7 @@ main(int argc, char **argv)
break;
case ERROR_NOTFOUND:
- fprintf(stderr, "Session %d not found while addiing action "
+ fprintf(stderr, "Session %d not found while adding action "
"attribute [another_var = \"foo\"]\n", sessionid);
break;