From: Wayne Davison Date: Fri, 20 Jan 2006 00:14:04 +0000 (+0000) Subject: Got rid of unused function u_strcmp(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/f608ebb1066fb0fa06b941811c56b32239d71d90 Got rid of unused function u_strcmp(). --- 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