Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
a466582f
Commit
a466582f
authored
May 08, 2000
by
James Brister
Browse files
Copy functions were not assigning result to output parameter. Now they are.
parent
3cb5571e
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/dns/config/conflog.c
View file @
a466582f
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
* SOFTWARE.
* SOFTWARE.
*/
*/
/* $Id: conflog.c,v 1.1
4
2000/05/08 1
4:35:29 tale
Exp $ */
/* $Id: conflog.c,v 1.1
5
2000/05/08 1
8:42:38 brister
Exp $ */
#include <config.h>
#include <config.h>
...
@@ -162,6 +162,8 @@ dns_c_logginglist_copy(isc_mem_t *mem,
...
@@ -162,6 +162,8 @@ dns_c_logginglist_copy(isc_mem_t *mem,
logcat
=
ISC_LIST_NEXT
(
logcat
,
next
);
logcat
=
ISC_LIST_NEXT
(
logcat
,
next
);
}
}
*
dest
=
newl
;
return
(
ISC_R_SUCCESS
);
return
(
ISC_R_SUCCESS
);
}
}
...
@@ -1161,6 +1163,8 @@ dns_c_logcat_copy(isc_mem_t *mem, dns_c_logcat_t **dest, dns_c_logcat_t *src) {
...
@@ -1161,6 +1163,8 @@ dns_c_logcat_copy(isc_mem_t *mem, dns_c_logcat_t **dest, dns_c_logcat_t *src) {
}
}
}
}
*
dest
=
newc
;
return
(
ISC_R_SUCCESS
);
return
(
ISC_R_SUCCESS
);
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment