1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-12 20:58:37 +03:00

Various comment fixes from Rafal Szczesniak <mimir@diament.ists.pwr.wroc.pl>

This commit is contained in:
Andrew Bartlett -
parent 5710e588ce
commit 3bf4b42771
3 changed files with 3 additions and 3 deletions

View File

@ -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) {

View File

@ -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)

View File

@ -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. */