diff options
| author | Philippe Charnier <charnier@FreeBSD.org> | 1997-10-10 06:23:42 +0000 |
|---|---|---|
| committer | Philippe Charnier <charnier@FreeBSD.org> | 1997-10-10 06:23:42 +0000 |
| commit | 1dcc6ec750ce84c42fee6fb29a88c20b3b91f4ed (patch) | |
| tree | c6510211de36420d926f0f06e4285a90e3012be9 /usr.sbin/pw/cpdir.c | |
| parent | 8298b5a8afa5c4079bd82202ce9720b515a2368e (diff) | |
Notes
Diffstat (limited to 'usr.sbin/pw/cpdir.c')
| -rw-r--r-- | usr.sbin/pw/cpdir.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/usr.sbin/pw/cpdir.c b/usr.sbin/pw/cpdir.c index 51891da929af..048a87bd1724 100644 --- a/usr.sbin/pw/cpdir.c +++ b/usr.sbin/pw/cpdir.c @@ -22,20 +22,24 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $Id$ */ +#ifndef lint +static const char rcsid[] = + "$Id$"; +#endif /* not lint */ + +#include <err.h> +#include <errno.h> +#include <fcntl.h> #include <stdio.h> #include <string.h> #include <stdlib.h> -#include <fcntl.h> +#include <unistd.h> #include <sys/types.h> #include <sys/stat.h> -#include <dirent.h> -#include <unistd.h> #include <sys/param.h> -#include <errno.h> +#include <dirent.h> #include "pwupd.h" @@ -47,8 +51,7 @@ copymkdir(char const * dir, char const * skel, mode_t mode, uid_t uid, gid_t gid char dst[MAXPATHLEN]; if (mkdir(dir, mode) != 0 && errno != EEXIST) { - sprintf(src, "mkdir(%s)", dir); - perror(src); + warn("mkdir(%s)", dir); } else { int infd, outfd; struct stat st; |
