diff options
Diffstat (limited to 'xlators/features/changelog/lib/src')
-rw-r--r-- | xlators/features/changelog/lib/src/gf-changelog-helpers.c | 10 | ||||
-rw-r--r-- | xlators/features/changelog/lib/src/gf-changelog-helpers.h | 2 | ||||
-rw-r--r-- | xlators/features/changelog/lib/src/gf-changelog.c | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/xlators/features/changelog/lib/src/gf-changelog-helpers.c b/xlators/features/changelog/lib/src/gf-changelog-helpers.c index 1eef8bf0479..f071b057d59 100644 --- a/xlators/features/changelog/lib/src/gf-changelog-helpers.c +++ b/xlators/features/changelog/lib/src/gf-changelog-helpers.c @@ -20,18 +20,18 @@ size_t gf_changelog_write (int fd, char *buffer, size_t len) { ssize_t size = 0; - size_t writen = 0; + size_t written = 0; - while (writen < len) { + while (written < len) { size = write (fd, - buffer + writen, len - writen); + buffer + written, len - written); if (size <= 0) break; - writen += size; + written += size; } - return writen; + return written; } void diff --git a/xlators/features/changelog/lib/src/gf-changelog-helpers.h b/xlators/features/changelog/lib/src/gf-changelog-helpers.h index 218896b86e7..9b875d45dcc 100644 --- a/xlators/features/changelog/lib/src/gf-changelog-helpers.h +++ b/xlators/features/changelog/lib/src/gf-changelog-helpers.h @@ -57,7 +57,7 @@ typedef struct gf_changelog { char gfc_brickpath[PATH_MAX]; - /* socket for recieving notifications */ + /* socket for receiving notifications */ int gfc_sockfd; char *gfc_working_dir; diff --git a/xlators/features/changelog/lib/src/gf-changelog.c b/xlators/features/changelog/lib/src/gf-changelog.c index 0240aeb0086..482a59aa805 100644 --- a/xlators/features/changelog/lib/src/gf-changelog.c +++ b/xlators/features/changelog/lib/src/gf-changelog.c @@ -272,7 +272,7 @@ gf_changelog_done (char *file) /** * @API - * for a set of changelogs, start from the begining + * for a set of changelogs, start from the beginning */ int gf_changelog_start_fresh () |