From 29e67cad0552fd89c8f59e8e90523347addb6660 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 4 Apr 2002 04:29:09 +0000 Subject: Free popt context after argument parsing. (This used to be commit f287f62962feca6dac8747d16676dc64723eb5b1) --- source3/rpcclient/rpcclient.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index ac5b38ee13..193c27e8a0 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -708,6 +708,8 @@ static void usage(void) } } + poptFreeContext(pc); + /* the following functions are part of the Samba debugging facilities. See lib/debug.c */ setup_logging("rpcclient", interactive); -- cgit