From d4343f0d192862cb378eac13365bcfde31fa1d37 Mon Sep 17 00:00:00 2001 From: arvindch Date: Mon, 17 Mar 2014 20:50:39 +0530 Subject: fixed a few misspellings. no code changes present Change-Id: Ia1a771301e9f1becbbffd8afd7eb68bec9696ef8 BUG: 1075417 Signed-off-by: arvindch Reviewed-on: http://review.gluster.org/7283 Reviewed-by: Justin Clift Tested-by: Anand Avati --- api/examples/glfsxmp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'api/examples') diff --git a/api/examples/glfsxmp.c b/api/examples/glfsxmp.c index 600d72fb5..7180a997f 100644 --- a/api/examples/glfsxmp.c +++ b/api/examples/glfsxmp.c @@ -293,19 +293,19 @@ test_h_unlink (void) goto out; } - /* unlink non-existant regular file */ + /* unlink non-existent regular file */ ret = glfs_h_unlink (fs, dir, my_file); if ((ret && errno != ENOENT) || (ret == 0)) { - fprintf (stderr, "glfs_h_unlink: error unlinking non-existant %s: invalid errno ,%d, %s\n", + fprintf (stderr, "glfs_h_unlink: error unlinking non-existent %s: invalid errno ,%d, %s\n", my_file, ret, strerror (errno)); printf ("glfs_h_unlink tests: FAILED\n"); goto out; } - /* unlink non-existant directory */ + /* unlink non-existent directory */ ret = glfs_h_unlink (fs, dir, my_subdir); if ((ret && errno != ENOENT) || (ret == 0)) { - fprintf (stderr, "glfs_h_unlink: error unlinking non-existant %s: invalid errno ,%d, %s\n", + fprintf (stderr, "glfs_h_unlink: error unlinking non-existent %s: invalid errno ,%d, %s\n", my_subdir, ret, strerror (errno)); printf ("glfs_h_unlink tests: FAILED\n"); goto out; -- cgit