]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
and disable debugging :)
authorTimo Sirainen <tss@iki.fi>
Wed, 23 Apr 2003 15:54:24 +0000 (18:54 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 23 Apr 2003 15:54:24 +0000 (18:54 +0300)
--HG--
branch : HEAD

src/lib/mmap-anon.c

index 538d2a51a6bd41902b3e8a87835e07247710d124..cd365a2a17f4d02623f9af2002d34b95ceee0447 100644 (file)
@@ -104,10 +104,6 @@ static int anon_mmap_fixed(void *address, size_t length)
 
        i_assert(address != NULL);
 
-       i_warning("%p %u", address, length);
-       errno = ENOMEM;
-       return -1;
-
        base = mmap(address, length, PROT_READ | PROT_WRITE,
                    MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE, zero_fd, 0);