1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-05 12:22:11 +03:00

Merge a bunch of trivial changes from HEAD. The difference remaining

should actual functional differences between HEAD and 3.0.

 - Mostly reformatting
 - Removal of unecessary #include "smb.h"
 - Merge of dyn_DRIVERFILE removal
 - Silly bug fix for python code
This commit is contained in:
Tim Potter
-
parent 3ce5207853
commit d3998307ad
20 changed files with 12 additions and 27 deletions

View File

@ -45,7 +45,7 @@ PyObject *from_struct(void *s, struct pyconv *conv)
fstring str = "";
if (u->buffer)
fstr_pull(s, u);
fstr_pull(str, u);
item = PyString_FromString(str);
PyDict_SetItemString(obj, conv[i].name, item);