diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/mangle.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/source3/smbd/mangle.c b/source3/smbd/mangle.c index a28cfe0931..7d8d68c9e2 100644 --- a/source3/smbd/mangle.c +++ b/source3/smbd/mangle.c @@ -1000,18 +1000,6 @@ BOOL name_map_mangle(char *OutName, BOOL need83, BOOL cache83, int snum) static TDB_CONTEXT *mangle_tdb; -static int POW10(unsigned int exp) -{ - int result = 1; - - while (exp) { - result *= 10; - exp--; - } - - return result; -} - BOOL init_mangle_tdb(void) { char *tdbfile; |