1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

pidl: Fix code spelling

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider 2023-06-06 13:04:46 +02:00 committed by Andreas Schneider
parent 35500dc4e3
commit 535617a840
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
##########################################
# Converts ODL stuctures to IDL structures
# Converts ODL structures to IDL structures
# (C) 2004-2005, 2008 Jelmer Vernooij <jelmer@samba.org>
package Parse::Pidl::ODL;

View File

@ -470,14 +470,14 @@ sub PythonFunctionStruct($$$$)
$self->indent;
# This creates a new, zeroed C structure and python object.
# Thse may not be valid or sensible values, but this is as
# These may not be valid or sensible values, but this is as
# well as we can do.
$self->pidl("PyObject *self = pytalloc_new($cname, type);");
# If there are any children that are ref pointers, we need to
# allocate something for them to point to just as the pull
# routine will when parsing the stucture from NDR.
# routine will when parsing the structure from NDR.
#
# We then make those pointers point to zeroed memory
#