X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/87001ac6c245cc351210436031a6f32fda350c62..f608ebb1066fb0fa06b941811c56b32239d71d90:/util.c diff --git a/util.c b/util.c index a5743152..75a3e23c 100644 --- a/util.c +++ b/util.c @@ -1001,22 +1001,6 @@ int handle_partial_dir(const char *fname, int create) return 1; } -/** We need to supply our own strcmp function for file list comparisons - to ensure that signed/unsigned usage is consistent between machines. */ -int u_strcmp(const char *cs1, const char *cs2) -{ - const uchar *s1 = (const uchar *)cs1; - const uchar *s2 = (const uchar *)cs2; - - while (*s1 && *s2 && (*s1 == *s2)) { - s1++; s2++; - } - - return (int)*s1 - (int)*s2; -} - - - /** * Determine if a symlink points outside the current directory tree. * This is considered "unsafe" because e.g. when mirroring somebody