From 5824c938300d633ee854725324d15159b8b533fc Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 6 Sep 2012 16:20:17 -0700 Subject: [PATCH] ovs-lib: Move DAEMON_CWD initialization to top of file. All the other variables are initialized at the top and I don't see a reason that this variable is special. Signed-off-by: Ben Pfaff Acked-by: Ethan Jackson --- utilities/ovs-lib.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utilities/ovs-lib.in b/utilities/ovs-lib.in index 3c63ddd98..01f4dedd3 100644 --- a/utilities/ovs-lib.in +++ b/utilities/ovs-lib.in @@ -39,6 +39,8 @@ fi VERSION='@VERSION@' +DAEMON_CWD=/ + LC_ALL=C; export LC_ALL ## ------------- ## @@ -159,7 +161,6 @@ start_daemon () { fi } -DAEMON_CWD=/ stop_daemon () { if test -e "$rundir/$1.pid"; then if pid=`cat "$rundir/$1.pid"`; then -- 2.43.0