1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

See ChangeLog: Sat Jun 26 12:15:59 CEST 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-06-26 10:23:06 +00:00
parent 1423b4239b
commit 080c9ca49f
39 changed files with 2651 additions and 1912 deletions

View file

@ -74,7 +74,7 @@ create_dotlock( const char *file_to_lock )
int fd = -1;
char pidstr[16];
#ifndef HAVE_DOSISH_SYSTEM
struct utsname uts;
struct utsname utsbuf;
#endif
const char *nodename;
const char *dirpart;
@ -93,10 +93,10 @@ create_dotlock( const char *file_to_lock )
/* fixme: add the hostname to the second line (FQDN or IP addr?) */
/* create a temporary file */
if( uname( &uts ) )
if( uname( &utsbuf ) )
nodename = "unknown";
else
nodename = uts.nodename;
nodename = utsbuf.nodename;
if( !(dirpart = strrchr( file_to_lock, '/' )) ) {
dirpart = ".";