This commit is contained in:
Pavel Roskin 2003-06-02 19:47:30 +00:00
parent a5959b02f9
commit 349d70c8cf
6 changed files with 6 additions and 6 deletions

View File

@ -164,7 +164,7 @@ dd bs=<offset%4096> count=1 > /dev/null;
dd bs=4096 count=<offset/4096>;
dd bs=<offset%4096> 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.

View File

@ -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 {

View File

@ -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)
{

View File

@ -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.

View File

@ -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 *);

View File

@ -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