Skip to content

Commit

Permalink
Tweaks for release.
Browse files Browse the repository at this point in the history
Change-Id: I656ca68d0d10d6d36646e8b8694bcd5797758c27
  • Loading branch information
grke committed Nov 30, 2019
1 parent 0f5572b commit 46cdfeb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2019-11-01 Chnages in burp-2.3.18:
* 30: Add option to take a list of paths for restore.
* Add '-a p' option, for outputing parseable file lists.
* 832: Try to be more generic about IO_REPARSE tags.
* From Vitalio:
- Implement support of keeping readall capabilities after UID/GID switch.

2019-10-06 Changes in burp-2.3.16:
* 832: Avoid 'could not stat' on OneDrive reparse points.
* Upgrade Windows depkgs to:
Expand Down
5 changes: 5 additions & 0 deletions DONATIONS
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ me via the website contact page and we can talk about alternatives.

This is the list of donations received to date. Many thanks to all of you.

Donations for 2019-11:
* £100.00 Romain L.
* £20.00 Marcin W.
* £10.00 Gonéri L.B.

Donations for 2019-10:
* £100.00 Romain L.
* £20.00 Marcin W.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl require a recent autoconf
AC_PREREQ([2.61])

AC_INIT([Burp],[2.3.16],[https://github.com/grke/burp/issues],[burp],[http://burp.grke.net/])
AC_INIT([Burp],[2.3.18],[https://github.com/grke/burp/issues],[burp],[http://burp.grke.net/])
AC_CONFIG_AUX_DIR([autoconf])
AC_CONFIG_HEADERS([src/config.h])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
4 changes: 2 additions & 2 deletions src/handy.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,11 +453,11 @@ int chuser_and_or_chgrp(const char *user, const char *group, int readall)
strerror(errno));
goto err;
}
#endif
return 0;
err:
free_w(&username);
return -1;
#endif
return 0;
}

// Not in dpth.c so that Windows client can see it.
Expand Down

0 comments on commit 46cdfeb

Please sign in to comment.