summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2011-11-07 09:55:01 +1100
committerAndrew Tridgell <tridge@samba.org>2011-11-07 10:02:45 +1100
commitf0ae7e191682de1e56ca1ed2a9e9aa67e9d22b14 (patch)
treeabca72efd4caf46993be7dcd32f3ac5feca0525b
parenteb9c35cbb77fa16f8301428ce163359008d1687f (diff)
downloadsamba-f0ae7e191682de1e56ca1ed2a9e9aa67e9d22b14.tar.gz
samba-f0ae7e191682de1e56ca1ed2a9e9aa67e9d22b14.tar.bz2
samba-f0ae7e191682de1e56ca1ed2a9e9aa67e9d22b14.zip
kcc: fixed program name
kcccompute -> samba_kcc
-rwxr-xr-xsource4/scripting/bin/samba_kcc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/scripting/bin/samba_kcc b/source4/scripting/bin/samba_kcc
index be6c925b95..30e6687066 100755
--- a/source4/scripting/bin/samba_kcc
+++ b/source4/scripting/bin/samba_kcc
@@ -655,10 +655,10 @@ def sort_replica_by_dsa_guid(rep1, rep2):
return cmp(rep1.rep_dsa_guid, rep2.rep_dsa_guid)
##################################################
-# kcccompute entry point
+# samba_kcc entry point
##################################################
-parser = optparse.OptionParser("kcccompute [options]")
+parser = optparse.OptionParser("samba_kcc [options]")
sambaopts = options.SambaOptions(parser)
credopts = options.CredentialsOptions(parser)
@@ -669,7 +669,7 @@ parser.add_option_group(options.VersionOptions(parser))
parser.add_option("--debug", help="debug output", action="store_true")
parser.add_option("--seed", help="random number seed")
-logger = logging.getLogger("kcccompute")
+logger = logging.getLogger("samba_kcc")
logger.addHandler(logging.StreamHandler(sys.stdout))
lp = sambaopts.get_loadparm()