diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-03-23 00:47:35 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-03-23 00:47:35 +0000 |
commit | 46a6e7f62ba2c72d6288290857193eed280c6d2a (patch) | |
tree | f69add495eeedbe41a38c69259ad4785214a10f4 /source3/utils/nmblookup.c | |
parent | 8c7753e87f297d8b828e50d7fd9ed5942f0adb0e (diff) | |
download | samba-46a6e7f62ba2c72d6288290857193eed280c6d2a.tar.gz samba-46a6e7f62ba2c72d6288290857193eed280c6d2a.tar.bz2 samba-46a6e7f62ba2c72d6288290857193eed280c6d2a.zip |
We don't need optarg when we have popt
(This used to be commit b46581ef153296a0a04f773115cb2ddad4d44686)
Diffstat (limited to 'source3/utils/nmblookup.c')
-rw-r--r-- | source3/utils/nmblookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/nmblookup.c b/source3/utils/nmblookup.c index 3ff7f6c609..97cea3a7bb 100644 --- a/source3/utils/nmblookup.c +++ b/source3/utils/nmblookup.c @@ -222,12 +222,12 @@ int main(int argc,char *argv[]) switch (opt) { case 'B': - bcast_addr = *interpret_addr2(optarg); + bcast_addr = *interpret_addr2(poptGetOptArg(pc)); got_bcast = True; use_bcast = True; break; case 'U': - bcast_addr = *interpret_addr2(optarg); + bcast_addr = *interpret_addr2(poptGetOptArg(pc)); got_bcast = True; use_bcast = False; break; |