summaryrefslogtreecommitdiff
path: root/src/commit2.c
diff options
context:
space:
mode:
authorMichael Larson <mike@vyatta.com>2011-01-06 16:52:01 -0800
committerStig Thormodsrud <stig@vyatta.com>2011-01-11 16:39:32 -0800
commit08130814f16f30c634979a36ad228da555ce776a (patch)
tree4206351b9382f55691d547b05163ace0d67a3ebe /src/commit2.c
parent1b009e7bb02e0737d7c4461caea7ba229f851375 (diff)
downloadvyatta-cfg-08130814f16f30c634979a36ad228da555ce776a.tar.gz
vyatta-cfg-08130814f16f30c634979a36ad228da555ce776a.zip
use the old interface rather than call unlink directly.
(cherry picked from commit 3246881725b219e532464a0191d074e9f02cba23)
Diffstat (limited to 'src/commit2.c')
-rw-r--r--src/commit2.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/commit2.c b/src/commit2.c
index 04aa79a..5cfecc8 100644
--- a/src/commit2.c
+++ b/src/commit2.c
@@ -44,8 +44,6 @@ static const char* ActionNames[top_act] = {
"end" //7
};
-#define LOCK_FILE "/opt/vyatta/config/.lock"
-
GNode*
get_transactions(GNode*, boolean priority);
@@ -203,7 +201,7 @@ main(int argc, char** argv)
commit_comment = strdup(optarg);
break;
case 'l':
- unlink(LOCK_FILE);
+ release_config_lock();
break;
default:
usage();