1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Fix some typos.

Karolin
This commit is contained in:
Karolin Seeger 2008-02-08 09:28:57 +01:00 committed by Volker Lendecke
parent 0ee299f040
commit 2bec0a1fb7
6 changed files with 7 additions and 7 deletions

View File

@ -235,7 +235,7 @@ enum {
** that contains the icon data, icon size, icon type, the file type, and file creator. ** that contains the icon data, icon size, icon type, the file type, and file creator.
** **
** **
** The server returns only that the call was succesfull or not. ** The server returns only that the call was successful or not.
*/ */
#define SMB_MAC_DT_ADD_ICON 0x309 #define SMB_MAC_DT_ADD_ICON 0x309

View File

@ -980,7 +980,7 @@ static int smbldap_connect_system(struct smbldap_state *ldap_state, LDAP * ldap_
ldap_state->paged_results = True; ldap_state->paged_results = True;
} }
DEBUG(3, ("ldap_connect_system: succesful connection to the LDAP server\n")); DEBUG(3, ("ldap_connect_system: successful connection to the LDAP server\n"));
DEBUGADD(10, ("ldap_connect_system: LDAP server %s support paged results\n", DEBUGADD(10, ("ldap_connect_system: LDAP server %s support paged results\n",
ldap_state->paged_results ? "does" : "does not")); ldap_state->paged_results ? "does" : "does not"));
return rc; return rc;
@ -1063,7 +1063,7 @@ static int smbldap_open(struct smbldap_state *ldap_state)
"smbldap_idle_fn", smbldap_idle_fn, ldap_state); "smbldap_idle_fn", smbldap_idle_fn, ldap_state);
} }
DEBUG(4,("The LDAP server is succesfully connected\n")); DEBUG(4,("The LDAP server is successfully connected\n"));
return LDAP_SUCCESS; return LDAP_SUCCESS;
} }

View File

@ -2171,7 +2171,7 @@ char *ipstr_list_make(char **ipstr_list,
* @param ipstr ip string list to be parsed * @param ipstr ip string list to be parsed
* @param ip_list pointer to array of ip addresses which is * @param ip_list pointer to array of ip addresses which is
* allocated by this function and must be freed by caller * allocated by this function and must be freed by caller
* @return number of succesfully parsed addresses * @return number of successfully parsed addresses
**/ **/
int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list) int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list)

View File

@ -6797,7 +6797,7 @@ smbc_free_context(SMBCCTX *context,
SAFE_FREE(context->netbios_name); SAFE_FREE(context->netbios_name);
SAFE_FREE(context->user); SAFE_FREE(context->user);
DEBUG(3, ("Context %p succesfully freed\n", context)); DEBUG(3, ("Context %p successfully freed\n", context));
SAFE_FREE(context->internal); SAFE_FREE(context->internal);
SAFE_FREE(context); SAFE_FREE(context);
return 0; return 0;

View File

@ -2575,7 +2575,7 @@ bool print_job_end(int snum, uint32 jobid, enum file_close_type close_type)
fail: fail:
/* The print job was not succesfully started. Cleanup */ /* The print job was not successfully started. Cleanup */
/* Still need to add proper error return propagation! 010122:JRR */ /* Still need to add proper error return propagation! 010122:JRR */
unlink(pjob->filename); unlink(pjob->filename);
pjob_delete(sharename, jobid); pjob_delete(sharename, jobid);

View File

@ -2469,7 +2469,7 @@ NTSTATUS unlink_internals(connection_struct *conn, struct smb_request *req,
} }
count++; count++;
DEBUG(3,("unlink_internals: succesful unlink [%s]\n", DEBUG(3,("unlink_internals: successful unlink [%s]\n",
fname)); fname));
TALLOC_FREE(fname); TALLOC_FREE(fname);