1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

r18002: Improved debug.

Jeremy.
This commit is contained in:
Jeremy Allison 2006-09-02 04:53:04 +00:00 committed by Gerald (Jerry) Carter
parent ba311ac4ea
commit 5f84c8c815

View File

@ -552,7 +552,8 @@ BOOL create_local_private_krb5_conf_for_domain(const char *realm, const char *do
ret = x_fwrite(file_contents, 1, flen, xfp);
if (flen != ret) {
DEBUG(0,("create_local_private_krb5_conf_for_domain: x_fwrite failed,"
" returned %u. Errno %s\n", (unsigned int)ret, strerror(errno) ));
" returned %u (should be %u). Errno %s\n",
(unsigned int)ret, (unsigned int)flen, strerror(errno) ));
unlink(fname);
x_fclose(xfp);
TALLOC_FREE(dname);