diff options
author | Mark Whitley <markw@lineo.com> | 2000-12-05 20:03:17 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-12-05 20:03:17 +0000 |
commit | 4758368505c2951300650ddcc93de6c657b43d50 (patch) | |
tree | 6890d8b480bc1040cdb8b1921db9e604754d1630 /include | |
parent | cf61fe14aebf2b5f753261afdb9e03167b31a843 (diff) | |
download | busybox-4758368505c2951300650ddcc93de6c657b43d50.tar.gz |
Fixed the comments to match the code and renamed the function to a (hopefully)
more descriptive name, and as per the style guide.
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h index 4a4f44aea..21c62faac 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -144,7 +144,7 @@ void reset_ino_dev_hashtable(void); int copyFile(const char *srcName, const char *destName, int setModes, int followLinks, int forceFlag); -int copySubFile(int srcFd, int dstFd, size_t remaining); +int copy_file_chunk(int srcFd, int dstFd, size_t remaining); char *buildName(const char *dirName, const char *fileName); int makeString(int argc, const char **argv, char *buf, int bufLen); char *getChunk(int size); |