summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2009-06-26 13:36:00 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-06-29 10:15:13 -0700
commitde622fb24f1295f19d7023cf903e84f663d89637 (patch)
treecb81b9ef02d1187eb2b3f32d778aa2b7fbfa291f /auth
parent72e83f9b52b5ed4bbeed1cc1163dc8392ccf6b05 (diff)
Fix some trivial typos.
I noticed that there were some minor spelling mistakes/typos in some of the source files. This patch fixes the ones I've found. Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'auth')
-rw-r--r--auth/addr/src/addr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth/addr/src/addr.c b/auth/addr/src/addr.c
index 5c293be4c30..3bd893d6e5d 100644
--- a/auth/addr/src/addr.c
+++ b/auth/addr/src/addr.c
@@ -30,7 +30,7 @@
#include "dict.h"
#define ADDR_DELIMITER " ,"
-#define PRIVILAGED_PORT_CIELING 1024
+#define PRIVILEGED_PORT_CEILING 1024
#ifndef AF_INET_SDP
#define AF_INET_SDP 27
@@ -111,9 +111,9 @@ gf_auth (dict_t *input_params, dict_t *config_params)
}
peer_port = atoi (service);
- if (peer_port >= PRIVILAGED_PORT_CIELING) {
+ if (peer_port >= PRIVILEGED_PORT_CEILING) {
gf_log ("auth/addr", GF_LOG_ERROR,
- "client is bound to port %d which is not privilaged",
+ "client is bound to port %d which is not privileged",
peer_port);
return AUTH_DONT_CARE;
}