diff --git a/funcs/func_lock.c b/funcs/func_lock.c
index 625c61427cbeecdc857cf3af46a7ba146f49c0c5..38c3aea35e366adc2f826c58b9e66d71e1cb879d 100644
--- a/funcs/func_lock.c
+++ b/funcs/func_lock.c
@@ -214,14 +214,15 @@ static int ast_channel_cmp_cb(void *obj, void *arg, int flags)
 	return strcasecmp(ast_channel_name(chan), ast_channel_name(cmp_args)) ? 0 : CMP_MATCH;
 }
 
-static int get_lock(struct ast_channel *chan, char *lockname, int try)
+static int get_lock(struct ast_channel *chan, char *lockname, int trylock)
 {
 	struct ast_datastore *lock_store = ast_channel_datastore_find(chan, &lock_info, NULL);
 	struct lock_frame *current;
 	struct channel_lock_frame *clframe = NULL;
 	AST_LIST_HEAD(, channel_lock_frame) *list;
 	int res = 0;
-	struct timespec three_seconds = { .tv_sec = 3 };
+	struct timespec timeout = { 0, };
+	struct timeval now;
 
 	if (!lock_store) {
 		ast_debug(1, "Channel %s has no lock datastore, so we're allocating one.\n", ast_channel_name(chan));
@@ -233,7 +234,9 @@ static int get_lock(struct ast_channel *chan, char *lockname, int try)
 
 		list = ast_calloc(1, sizeof(*list));
 		if (!list) {
-			ast_log(LOG_ERROR, "Unable to allocate datastore list head.  %sLOCK will fail.\n", try ? "TRY" : "");
+			ast_log(LOG_ERROR,
+				"Unable to allocate datastore list head.  %sLOCK will fail.\n",
+				trylock ? "TRY" : "");
 			ast_datastore_free(lock_store);
 			return -1;
 		}
@@ -307,7 +310,9 @@ static int get_lock(struct ast_channel *chan, char *lockname, int try)
 		}
 
 		if (!(clframe = ast_calloc(1, sizeof(*clframe)))) {
-			ast_log(LOG_ERROR, "Unable to allocate channel lock frame.  %sLOCK will fail.\n", try ? "TRY" : "");
+			ast_log(LOG_ERROR,
+				"Unable to allocate channel lock frame.  %sLOCK will fail.\n",
+				trylock ? "TRY" : "");
 			AST_LIST_UNLOCK(list);
 			return -1;
 		}
@@ -345,8 +350,14 @@ static int get_lock(struct ast_channel *chan, char *lockname, int try)
 	pthread_kill(broker_tid, SIGURG);
 	AST_LIST_UNLOCK(&locklist);
 
-	if ((!current->owner) ||
-		(!try && !(res = ast_cond_timedwait(&current->cond, &current->mutex, &three_seconds)))) {
+	/* Wait up to three seconds from now for LOCK. */
+	now = ast_tvnow();
+	timeout.tv_sec = now.tv_sec + 3;
+	timeout.tv_nsec = now.tv_usec * 1000;
+
+	if (!current->owner
+		|| (!trylock
+			&& !(res = ast_cond_timedwait(&current->cond, &current->mutex, &timeout)))) {
 		res = 0;
 		current->owner = chan;
 		current->count++;