Tizen 2.0 Release
[external/tizen-coreutils.git] / lib / rename.c
1 /* Work around the bug in some systems whereby rename fails when the source
2    file has a trailing slash.  The rename functions of SunOS 4.1.1_U1 and
3    mips-dec-ultrix4.4 have this bug.
4
5    Copyright (C) 2001, 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software Foundation,
19    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
20
21 /* written by Volker Borchert */
22
23 #include <config.h>
24 #undef rename
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include "dirname.h"
31 #include "xalloc.h"
32
33 /* Rename the file SRC to DST, removing any trailing
34    slashes from SRC.  Needed for SunOS 4.1.1_U1.  */
35
36 int
37 rpl_rename (char const *src, char const *dst)
38 {
39   char *src_temp;
40   int ret_val;
41   size_t s_len = strlen (src);
42
43   if (s_len && src[s_len - 1] == '/')
44     {
45       src_temp = xstrdup (src);
46       strip_trailing_slashes (src_temp);
47     }
48   else
49     src_temp = (char *) src;
50
51   ret_val = rename (src_temp, dst);
52
53   if (src_temp != src)
54     free (src_temp);
55
56   return ret_val;
57 }