spelling corrections in glusterfs code

Signed-off-by: Vishwanath S Bhat <vishwanath@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>

BUG: 2903 (Last spelling errors in source code)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2903
This commit is contained in:
Vishwanath 2011-06-23 05:41:39 +00:00 committed by Anand Avati
parent a846faead3
commit 83d1f9642e
8 changed files with 21 additions and 21 deletions

View File

@ -1,7 +1,7 @@
.\" Copyright (c) 2006-2011 Gluster, Inc. <http://www.gluster.com>
.\" This file is part of GlusterFS.
.\"
.\" GlusterFS is GF_FREE software; you can redistribute it and/or modify
.\" GlusterFS is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU Affero General Public License as published
.\" by the Free Software Foundation; either version 3 of the License,
.\" or (at your option) any later version.

View File

@ -2,7 +2,7 @@
.\" Copyright (c) 2006-2011 Gluster, Inc. <http://www.gluster.com>
.\" This file is part of GlusterFS.
.\"
.\" GlusterFS is GF_FREE software; you can redistribute it and/or modify
.\" GlusterFS is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU Affero General Public License as published
.\" by the Free Software Foundation; either version 3 of the License,
.\" or (at your option) any later version.

View File

@ -455,7 +455,7 @@ gf_strsplit (const char *str, const char *delim,
int j = 0;
if (str == NULL || delim == NULL || tokens == NULL || token_count == NULL) {
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
return -1;
}
@ -526,7 +526,7 @@ gf_strstr (const char *str, const char *delim, const char *match)
tmp_str = strdup (str);
if (str == NULL || delim == NULL || match == NULL || tmp_str == NULL) {
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
ret = -1;
goto out;
}
@ -557,7 +557,7 @@ gf_volume_name_validate (const char *volume_name)
const char *vname = NULL;
if (volume_name == NULL) {
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
return -1;
}
@ -586,7 +586,7 @@ gf_string2time (const char *str, uint32_t *n)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -641,7 +641,7 @@ gf_string2percent (const char *str, uint32_t *n)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -694,7 +694,7 @@ _gf_string2long (const char *str, long *n, int base)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -734,7 +734,7 @@ _gf_string2ulong (const char *str, unsigned long *n, int base)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -789,7 +789,7 @@ _gf_string2uint (const char *str, unsigned int *n, int base)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -842,7 +842,7 @@ _gf_string2double (const char *str, double *n)
int old_errno = 0;
if (str == NULL || n == NULL) {
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -877,7 +877,7 @@ _gf_string2longlong (const char *str, long long *n, int base)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -917,7 +917,7 @@ _gf_string2ulonglong (const char *str, unsigned long long *n, int base)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -1308,7 +1308,7 @@ gf_string2bytesize (const char *str, uint64_t *n)
if (str == NULL || n == NULL)
{
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
errno = EINVAL;
return -1;
}
@ -1419,7 +1419,7 @@ int
gf_string2boolean (const char *str, gf_boolean_t *b)
{
if (str == NULL) {
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
return -1;
}
@ -1666,7 +1666,7 @@ valid_internet_address (char *address)
int length = 0;
if (address == NULL) {
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "arguement invalid");
gf_log_callingfn (THIS->name, GF_LOG_WARNING, "argument invalid");
goto out;
}

View File

@ -194,7 +194,7 @@ err:
/* this procedure can only pass 4 arguments to registered notifyfn. To send more
* arguements call wrapper->notify directly.
* arguments call wrapper->notify directly.
*/
inline void
rpcsvc_program_notify (rpcsvc_listener_t *listener, rpcsvc_event_t event,

View File

@ -2,7 +2,7 @@
Copyright (c) 2006-2010 Gluster, Inc. <http://www.gluster.com>
This file is part of GlusterFS.
GlusterFS is GF_FREE software; you can redistribute it and/or modify
GlusterFS is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.

View File

@ -2,7 +2,7 @@
Copyright (c) 2006-2010 Gluster, Inc. <http://www.gluster.com>
This file is part of GlusterFS.
GlusterFS is GF_FREE software; you can redistribute it and/or modify
GlusterFS is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.

View File

@ -2,7 +2,7 @@
Copyright (c) 2010 Gluster, Inc. <http://www.gluster.com>
This file is part of GlusterFS.
GlusterFS is GF_FREE software; you can redistribute it and/or modify
GlusterFS is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.

View File

@ -2,7 +2,7 @@
Copyright (c) 2006-2010 Gluster, Inc. <http://www.gluster.com>
This file is part of GlusterFS.
GlusterFS is GF_FREE software; you can redistribute it and/or modify
GlusterFS is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.