1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

Fix spelling s/unitialized/uninitialized/

Signed-off-by: Mathieu Parent <math.parent@gmail.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
Mathieu Parent 2018-05-04 22:24:16 +02:00 committed by Andrew Bartlett
parent 66a9b53457
commit 5a0fd87b6b
2 changed files with 2 additions and 2 deletions

View File

@ -869,7 +869,7 @@ char *print_canonical_sockaddr(TALLOC_CTX *ctx,
char *dest = NULL;
int ret;
/* Linux getnameinfo() man pages says port is unitialized if
/* Linux getnameinfo() man pages says port is uninitialized if
service name is NULL. */
ret = sys_getnameinfo((const struct sockaddr *)pss,

View File

@ -35,7 +35,7 @@ const char *cli_errstr(struct cli_state *cli)
char *result;
if (!cli->initialised) {
fstrcpy(cli_error_message, "[Programmer's error] cli_errstr called on unitialized cli_stat struct!\n");
fstrcpy(cli_error_message, "[Programmer's error] cli_errstr called on uninitialized cli_stat struct!\n");
goto done;
}