diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-21 12:57:07 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-21 12:58:11 +0100 |
commit | 24d4433bd75366774945ed59c0043428dedea4ba (patch) | |
tree | 6980a0d36b1a44c91026f8b1f2b737154af04f31 /source3/lib | |
parent | 3d40d8461efbd9010487f1ef6cbd72a5c4754f55 (diff) | |
download | samba-24d4433bd75366774945ed59c0043428dedea4ba.tar.gz samba-24d4433bd75366774945ed59c0043428dedea4ba.tar.bz2 samba-24d4433bd75366774945ed59c0043428dedea4ba.zip |
s3: Move "yesno" to the only place where it is used: client.c
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 8525d9c919..007226b5c9 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -940,24 +940,6 @@ NTSTATUS reinit_after_fork(struct messaging_context *msg_ctx, return status; } -/**************************************************************************** - Put up a yes/no prompt. -****************************************************************************/ - -bool yesno(const char *p) -{ - char ans[20]; - printf("%s",p); - - if (!fgets(ans,sizeof(ans)-1,stdin)) - return(False); - - if (*ans == 'y' || *ans == 'Y') - return(True); - - return(False); -} - #if defined(PARANOID_MALLOC_CHECKER) /**************************************************************************** |