]> arthur.barton.de Git - netatalk.git/blob - libatalk/util/unix.c
don't use & in getcwd parameter
[netatalk.git] / libatalk / util / unix.c
1 /*
2   $Id: unix.c,v 1.3 2010-01-26 08:05:17 didg Exp $
3   Copyright (c) 2010 Frank Lahm <franklahm@gmail.com>
4
5   This program is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation; either version 2 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14 */
15
16 /*!
17  * @file
18  * Netatalk utility functions
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif /* HAVE_CONFIG_H */
24
25 #include <unistd.h>
26 #include <stdint.h>
27 #include <errno.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <dirent.h>
34
35 #include <atalk/adouble.h>
36 #include <atalk/ea.h>
37 #include <atalk/afp.h>
38 #include <atalk/logger.h>
39 #include <atalk/volume.h>
40 #include <atalk/vfs.h>
41 #include <atalk/util.h>
42 #include <atalk/unix.h>
43
44 /*!
45  * @brief get cwd in static buffer
46  *
47  * @returns pointer to path or pointer to error messages on error
48  */
49 extern const char *getcwdpath(void)
50 {
51     static char cwd[MAXPATHLEN + 1];
52     char *p;
53
54     if ((p = getcwd(cwd, MAXPATHLEN)) != NULL)
55         return p;
56     else
57         return strerror(errno);
58 }