1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00

add win_errstr() as wrapper of dos_errstr().

this makes merging stuff from samba4 easier

metze
This commit is contained in:
Stefan Metzmacher 2007-11-08 14:33:04 +01:00
parent 9a201fd4c8
commit cfbdb133b9

View File

@ -108,3 +108,9 @@ const char *dos_errstr(WERROR werror)
return msg;
}
/* compat function for samba4 */
const char *win_errstr(WERROR werror)
{
return dos_errstr(werror);
}