summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/auth/auth_util.c2
-rw-r--r--source3/smbd/process.c2
-rw-r--r--source3/tdb/tdb.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index cd53b6b7c2..a4dea39d2d 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -123,7 +123,7 @@ static BOOL make_user_info(auth_usersupplied_info **user_info,
ZERO_STRUCTP(*user_info);
- DEBUG(5,("makeing strings for %s's user_info struct\n", internal_username));
+ DEBUG(5,("making strings for %s's user_info struct\n", internal_username));
(*user_info)->smb_name.str = strdup(smb_name);
if ((*user_info)->smb_name.str) {
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index bf1a1ca9a7..8c037b4706 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -818,7 +818,7 @@ set. Ignoring max smbd restriction.\n"));
}
/****************************************************************************
- process an smb from the client - split out from the process() code so
+ process an smb from the client - split out from the smbd_process() code so
it can be used by the oplock break code.
****************************************************************************/
void process_smb(char *inbuf, char *outbuf)
diff --git a/source3/tdb/tdb.c b/source3/tdb/tdb.c
index ad67e9393e..e5f1b0a19b 100644
--- a/source3/tdb/tdb.c
+++ b/source3/tdb/tdb.c
@@ -243,7 +243,7 @@ static void tdb_unlock(TDB_CONTEXT *tdb, int list, int ltype)
tdb->locked[list+1].count--;
}
-/* This is based on the hash agorithm from gdbm */
+/* This is based on the hash algorithm from gdbm */
static u32 tdb_hash(TDB_DATA *key)
{
u32 value; /* Used to compute the hash value. */