From 3e252f7aa2e3b83311ee174ccc8bfa470d9f6037 Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 3 Sep 2004 01:36:15 +0000 Subject: Wraps on the unique id should skip 0 --- src/clamsmtpd.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/clamsmtpd.c b/src/clamsmtpd.c index 4ffb003..a9e8f9d 100644 --- a/src/clamsmtpd.c +++ b/src/clamsmtpd.c @@ -575,6 +575,10 @@ static void* thread_main(void* arg) plock(); /* Assign a unique id to the connection */ ctx->id = g_unique_id++; + + /* We don't care about wraps, but we don't want zero */ + if(g_unique_id == 0) + g_unique_id++; punlock(); ctx->client.fd = fd; -- cgit v1.2.3