summaryrefslogtreecommitdiff
path: root/src/repo.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-01-02 21:10:22 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-08-22 15:22:39 +0100
commit356768f8aa07661f52625f10b90a3affa562dd8a (patch)
treec05d403f5d71f0d7ac4cd962363ddcf28699921d /src/repo.h
parentType fixes work new libgit2 (diff)
downloadnetfs-gitfs-356768f8aa07661f52625f10b90a3affa562dd8a.tar.bz2
netfs-gitfs-356768f8aa07661f52625f10b90a3affa562dd8a.tar.xz
netfs-gitfs-356768f8aa07661f52625f10b90a3affa562dd8a.zip
Update to new NetFS interface
Diffstat (limited to 'src/repo.h')
-rw-r--r--src/repo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repo.h b/src/repo.h
index b5b183c..34e5826 100644
--- a/src/repo.h
+++ b/src/repo.h
@@ -27,7 +27,7 @@ namespace GitFS {
void mknod(ReqEnv env, ::std::string path, int mode, int dev, const ::Ice::Current& current) override;
void symlink(ReqEnv env, ::std::string path1, ::std::string path2, const ::Ice::Current& current) override;
void link(ReqEnv env, ::std::string path1, ::std::string path2, const ::Ice::Current& current) override;
- void rename(ReqEnv env, ::std::string from, ::std::string to, const ::Ice::Current& current) override;
+ void rename(ReqEnv env, ::std::string from, ::std::string to, const Ice::optional<Ice::Int>, const ::Ice::Current& current) override;
void chmod(ReqEnv env, ::std::string path, int mode, const ::Ice::Current& current) override;
void chown(ReqEnv env, ::std::string path, int uid, int gid, const ::Ice::Current& current) override;
void utimens(ReqEnv env, ::std::string path, long long int atime, long long int atimens, long long int mtime, long long int mtimens, const ::Ice::Current& current) override;