Commit 6566d205 authored by Wayne Davison's avatar Wayne Davison

Made full_write() non-static.

parent e484f0cc
......@@ -197,7 +197,7 @@ int create_directory_path(char *fname, int base_umask)
*
* Derived from GNU C's cccp.c.
*/
static int full_write(int desc, char *ptr, size_t len)
int full_write(int desc, char *ptr, size_t len)
{
int total_written;
......@@ -245,7 +245,7 @@ static int safe_read(int desc, char *ptr, size_t len)
/** Copy a file.
*
* This is used in conjunction with the --temp-dir option */
* This is used in conjunction with the --temp-dir and --backup options */
int copy_file(char *source, char *dest, mode_t mode)
{
int ifd;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment