diff --git a/src/nodedef.cpp b/src/nodedef.cpp
index 112373b1eb8686bad506dfe09ccfad15d6b39e33..1795b199c2a022e8b23647682496d6c3a677dec7 100644
--- a/src/nodedef.cpp
+++ b/src/nodedef.cpp
@@ -1285,8 +1285,8 @@ NodeResolver::~NodeResolver()
 }
 
 
-int NodeResolver::addNode(std::string n_wanted, std::string n_alt,
-		content_t c_fallback, content_t *content)
+int NodeResolver::addNode(const std::string &n_wanted, const std::string &n_alt,
+	content_t c_fallback, content_t *content)
 {
 	if (m_is_node_registration_complete) {
 		if (m_ndef->getId(n_wanted, *content))
@@ -1312,8 +1312,8 @@ int NodeResolver::addNode(std::string n_wanted, std::string n_alt,
 }
 
 
-int NodeResolver::addNodeList(const char *nodename,
-		std::vector<content_t> *content_vec)
+int NodeResolver::addNodeList(const std::string &nodename,
+	std::vector<content_t> *content_vec)
 {
 	if (m_is_node_registration_complete) {
 		std::set<content_t> idset;
@@ -1326,7 +1326,7 @@ int NodeResolver::addNodeList(const char *nodename,
 		return idset.size() ? NR_STATUS_SUCCESS : NR_STATUS_FAILURE;
 	} else {
 		m_pending_content_vecs.push_back(
-			std::make_pair(std::string(nodename), content_vec));
+			std::make_pair(nodename, content_vec));
 		return NR_STATUS_PENDING;
 	}
 }
diff --git a/src/nodedef.h b/src/nodedef.h
index 978b9b7cd406d48ae8596cff3b4b879bb9c2bc35..dd76717e1b15ffd68be0a9dc4be36c5822b35d79 100644
--- a/src/nodedef.h
+++ b/src/nodedef.h
@@ -337,7 +337,7 @@ class NodeResolver {
 			node name resolution.
 		@return Status of node resolution request.
 	*/
-	int addNode(std::string n_wanted, std::string n_alt,
+	int addNode(const std::string &n_wanted, const std::string &n_alt,
 		content_t c_fallback, content_t *content);
 
 	/**
@@ -358,11 +358,12 @@ class NodeResolver {
 
 		@return Status of node resolution request.
 	*/
-	int addNodeList(const char *nodename, std::vector<content_t> *content_vec);
+	int addNodeList(const std::string &nodename,
+		std::vector<content_t> *content_vec);
 
 	/**
-		Removes all pending requests from the resolution queue to be satisfied
-		to content.
+		Removes all pending requests from the resolution queue with the output
+		address of 'content'.
 
 		@param content Location of the content ID for the request being
 			cancelled.
@@ -371,8 +372,8 @@ class NodeResolver {
 	bool cancelNode(content_t *content);
 
 	/**
-		Removes all pending requests from the resolution queue to be satisfied
-		to content_vec.
+		Removes all pending requests from the resolution queue with the output
+		address of 'content_vec'.
 
 		@param content_vec Location of the content ID vector for requests being
 			cancelled.