Mercurial > dovecot > original-hg > dovecot-1.2
view src/lib/hostpid.c @ 9191:b340ecb24469 HEAD
Fix VPATH build of RQUOTA support.
Some rpcgen derive #include "..." paths from the infile argument.
This will be off for VPATH builds, as the generated rquota_xdr.c
code will look in $(srcdir), but we'll generate the rquota.h file in
$(builddir). Play safe and copy rquota.x to $(builddir) first.
This fixes the build on openSUSE 11.1.
author | Matthias Andree <matthias.andree@gmx.de> |
---|---|
date | Tue, 07 Jul 2009 21:01:36 +0200 |
parents | 2609eca99495 |
children | 00cd9aacd03c |
line wrap: on
line source
/* Copyright (c) 2002-2009 Dovecot authors, see the included COPYING file */ #include "lib.h" #include "hostpid.h" #include <unistd.h> #include <netdb.h> const char *my_hostname = NULL; const char *my_pid = NULL; static char *my_domain = NULL; void hostpid_init(void) { static char hostname[256], pid[MAX_INT_STRLEN]; if (gethostname(hostname, sizeof(hostname)-1) == -1) i_strocpy(hostname, "unknown", sizeof(hostname)); hostname[sizeof(hostname)-1] = '\0'; my_hostname = hostname; /* allow calling hostpid_init() multiple times to reset hostname */ i_free_and_null(my_domain); i_strocpy(pid, dec2str(getpid()), sizeof(pid)); my_pid = pid; } const char *my_hostdomain(void) { struct hostent *hent; const char *name; if (my_domain == NULL) { hent = gethostbyname(my_hostname); name = hent != NULL ? hent->h_name : NULL; if (name == NULL) { /* failed, use just the hostname */ name = my_hostname; } my_domain = i_strdup(name); } return my_domain; }