X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/c605c2cdbd08c9f573bd4f0a0812643aa84979d7..93465f51bcc2484a1bdf0f94ed3b812fa5c39576:/ifuncs.h diff --git a/ifuncs.h b/ifuncs.h index cc332897..e032c67f 100644 --- a/ifuncs.h +++ b/ifuncs.h @@ -1,6 +1,6 @@ /* Inline functions for rsync. * - * Copyright (C) 2007 Wayne Davison + * Copyright (C) 2007-2008 Wayne Davison * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -57,6 +57,16 @@ from_wire_mode(int mode) return mode; } +static inline char * +d_name(struct dirent *di) +{ +#ifdef HAVE_BROKEN_READDIR + return (di->d_name - 2); +#else + return di->d_name; +#endif +} + static inline int isDigit(const char *ptr) {