summaryrefslogtreecommitdiffstats
path: root/ax25/access.c
diff options
context:
space:
mode:
authorThomas Osterried <ax25@x-berg.in-berlin.de>2023-05-13 20:54:11 +0200
committerThomas Osterried <ax25@x-berg.in-berlin.de>2023-05-13 20:54:11 +0200
commit471c5882ceed45446f76df0fc1ae285930de28ed (patch)
treec993d1d2c5657089c5470516c124aee5339b46d5 /ax25/access.c
parent41ad27fdec94ecc89f439225a6479063e525cb02 (diff)
Fixed speeling errors in man pages and programs.
Author: colint@debian.org Author: Dave Hibberd <d@vehibberd.com> Signed-off-by: Daniele Forsi <iu5hkx@gmail.com> Signed-off-by: Thomas Osterried <dl9sau@darc.de>
Diffstat (limited to 'ax25/access.c')
-rw-r--r--ax25/access.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ax25/access.c b/ax25/access.c
index 05d3375..fd954b2 100644
--- a/ax25/access.c
+++ b/ax25/access.c
@@ -272,7 +272,7 @@ char *read_pwd (struct passwd *pw, int *pwtype)
write_ax25(buf, strlen(buf), 1);
sprintf(buf, " with unique passwords (which may be changed).\r");
write_ax25(buf, strlen(buf), 1);
- sprintf(buf, " Please edit ~/.%s, and enable your prefered authentication type;\r", PWFILE);
+ sprintf(buf, " Please edit ~/.%s, and enable your preferred authentication type;\r", PWFILE);
write_ax25(buf, strlen(buf), 1);
sprintf(buf, " MD5 is recommended.\r");
write_ax25(buf, strlen(buf), 1);
@@ -280,12 +280,12 @@ char *read_pwd (struct passwd *pw, int *pwtype)
goto end;
}
if (!S_ISREG(statbuf.st_mode)) {
- sprintf(buf, "Error: password file .%s should be a regular file. Skiping..\r", PWFILE);
+ sprintf(buf, "Error: password file .%s should be a regular file. Skipping..\r", PWFILE);
write_ax25(buf, strlen(buf), 1);
goto end;
}
if (statbuf.st_uid != 0 && statbuf.st_uid != pw->pw_uid) {
- sprintf(buf, "Error: your password file .%s is not owned by you. Skiping..\r", PWFILE);
+ sprintf(buf, "Error: your password file .%s is not owned by you. Skipping..\r", PWFILE);
write_ax25(buf, strlen(buf), 1);
goto end;
}