aboutsummaryrefslogtreecommitdiffstats
path: root/main/samba/domain.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/samba/domain.patch')
-rw-r--r--main/samba/domain.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/main/samba/domain.patch b/main/samba/domain.patch
new file mode 100644
index 0000000000..5941cc06cf
--- /dev/null
+++ b/main/samba/domain.patch
@@ -0,0 +1,13 @@
+--- ./python/samba/netcmd/domain.py.orig
++++ ./python/samba/netcmd/domain.py
+@@ -301,8 +301,10 @@
+ def ask(prompt, default=None):
+ if default is not None:
+ print "%s [%s]: " % (prompt, default),
++ sys.stdout.flush()
+ else:
+ print "%s: " % (prompt,),
++ sys.stdout.flush()
+ return sys.stdin.readline().rstrip("\n") or default
+
+ try: