X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Futimens.c;h=ae006c6089c33462309b4dbf38c1f4742522e65c;hb=e18058a5a56236cbac23f10dc8a91420a3525562;hp=2d0e3bfc526b9514886ac3f52f5b7cdba9bb1b25;hpb=2eb19f526164a978c373a760deb30854d56b62ce;p=libguestfs.git diff --git a/daemon/utimens.c b/daemon/utimens.c index 2d0e3bf..ae006c6 100644 --- a/daemon/utimens.c +++ b/daemon/utimens.c @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -24,7 +24,7 @@ #include #include -#include "../src/guestfs_protocol.h" +#include "guestfs_protocol.h" #include "daemon.h" #include "actions.h" @@ -33,10 +33,6 @@ do_utimens (const char *path, int64_t atsecs, int64_t atnsecs, int64_t mtsecs, int64_t mtnsecs) { -#ifndef HAVE_FUTIMENS - reply_with_error ("utimens: not supported in this appliance"); - return -1; -#else int fd; int r; @@ -77,5 +73,4 @@ do_utimens (const char *path, } return 0; -#endif /* HAVE_FUTIMENS */ }