From 349d70c8cf99f69df8374b5553d5ed48a3f441a9 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Mon, 2 Jun 2003 19:47:30 +0000 Subject: [PATCH] Typos. --- vfs/README.fish | 2 +- vfs/ftpfs.c | 2 +- vfs/mcfs.c | 2 +- vfs/samba/configure.in | 2 +- vfs/samba/include/smb.h | 2 +- vfs/vfs.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/vfs/README.fish b/vfs/README.fish index eb01e8278..10b07770f 100644 --- a/vfs/README.fish +++ b/vfs/README.fish @@ -164,7 +164,7 @@ dd bs= count=1 > /dev/null; dd bs=4096 count=; dd bs= count=1; ) -Returns ### 200 on successfull exit, ### 291 on successfull exit when +Returns ### 200 on successful exit, ### 291 on successful exit when reading ended at eof, ### 292 on successfull exit when reading did not end at eof. diff --git a/vfs/ftpfs.c b/vfs/ftpfs.c index 617568c96..bcf4a600b 100644 --- a/vfs/ftpfs.c +++ b/vfs/ftpfs.c @@ -866,7 +866,7 @@ ftpfs_get_current_directory (vfs *me, vfs_s_super *super) else { /* If the remote server is an Amiga a leading slash might be missing. MC needs it because it is used - as seperator between hostname and path internally. */ + as separator between hostname and path internally. */ return g_strconcat( "/", bufp, 0); } } else { diff --git a/vfs/mcfs.c b/vfs/mcfs.c index 423730a27..7ba82ec89 100644 --- a/vfs/mcfs.c +++ b/vfs/mcfs.c @@ -204,7 +204,7 @@ get_remote_port (struct sockaddr_in *sin, int *version) } /* This used to be in utilvfs.c, but as it deals with portmapper, it - is probably usefull for mcfs */ + is probably useful for mcfs */ static int open_tcp_link (char *host, int *port, int *version, char *caller) { diff --git a/vfs/samba/configure.in b/vfs/samba/configure.in index 0882b89a1..fecfaaec4 100644 --- a/vfs/samba/configure.in +++ b/vfs/samba/configure.in @@ -15,7 +15,7 @@ AC_SUBST(HOST_OS) AC_SUBST(WRAP) AC_SUBST(WRAP32) -# compile with optimisation and without debugging by default +# compile with optimization and without debugging by default CFLAGS=${CFLAGS-"-O"} dnl Checks for programs. diff --git a/vfs/samba/include/smb.h b/vfs/samba/include/smb.h index e5cc8568e..c4302b1af 100644 --- a/vfs/samba/include/smb.h +++ b/vfs/samba/include/smb.h @@ -783,7 +783,7 @@ struct passdb_ops { BOOL (*mod_smbpwd_entry)(struct smb_passwd *, BOOL); /* - * Functions that manupulate a struct sam_passwd. + * Functions that manipulate a struct sam_passwd. */ struct sam_passwd *(*getsam21pwent)(void *); diff --git a/vfs/vfs.h b/vfs/vfs.h index 154d7e7e2..71c94f908 100644 --- a/vfs/vfs.h +++ b/vfs/vfs.h @@ -378,7 +378,7 @@ extern void vfs_print_stats (const char *fs_name, const char *action, #define NO_LINEAR(a) (((a) == (O_RDONLY | O_LINEAR)) ? O_RDONLY : (a)) #endif -/* O_LINEAR is strange beast, be carefull. If you open file asserting +/* O_LINEAR is strange beast, be careful. If you open file asserting * O_RDONLY | O_LINEAR, you promise: * * a) to read file linearly from beginning to the end