diff options
author | Stef Walter <stef@memberwebs.com> | 2004-07-22 03:46:14 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-07-22 03:46:14 +0000 |
commit | 3877595290696d958e2e3a5b4e8c2dbc8ada589b (patch) | |
tree | 584186a428fc56576b8a0e85aaaa2f24cf1d5f3f /common | |
parent | 4e2e17233ed410862852e78fd1c022d0a4b1ffa3 (diff) |
- Unique id should be in lock
Diffstat (limited to 'common')
-rw-r--r-- | common/smtppass.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/smtppass.c b/common/smtppass.c index 7f7d8e6..f021a8b 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -551,13 +551,14 @@ static void* thread_main(void* arg) memset(&ctx, 0, sizeof(ctx)); - /* Assign a unique id to the connection */ - ctx.id = g_unique_id++; - ctx.server = -1; ctx.clam = -1; plock(); + /* Assign a unique id to the connection */ + ctx.id = g_unique_id++; + + /* Get the client socket */ ctx.client = thread->fd; punlock(); |