X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/6a9b319871ee85eeada2a0511e9436d0bfa6aab8..fe53310bc2e7636f1dd16001684d0c5d936cd292:/openssh/openbsd-compat/getcwd.c diff --git a/openssh/openbsd-compat/getcwd.c b/openssh/openbsd-compat/getcwd.c index f4b98e8..de3bacc 100644 --- a/openssh/openbsd-compat/getcwd.c +++ b/openssh/openbsd-compat/getcwd.c @@ -24,12 +24,12 @@ * SUCH DAMAGE. */ -#include "includes.h" +#include "config.h" #if !defined(HAVE_GETCWD) #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getcwd.c,v 1.7 2002/11/24 01:52:27 cloder Exp $"; +static char rcsid[] = "$OpenBSD: getcwd.c,v 1.6 2000/07/19 15:25:13 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -127,7 +127,7 @@ getcwd(char *pt,size_t size) /* * Build pointer to the parent directory, allocating memory * as necessary. Max length is 3 for "../", the largest - * possible component name, plus a trailing NUL. + * possible component name, plus a trailing NULL. */ if (bup + 3 + MAXNAMLEN + 1 >= eup) { char *nup;