add RCSID

S_ISTXT -> S_ISVTX
printf sizes of files with %lu instead of %q (which is not portable)


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9528 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2001-01-27 20:11:18 +00:00
parent 2e6cfb0d8a
commit cba14b853b

View File

@@ -31,6 +31,11 @@
* SUCH DAMAGE. * SUCH DAMAGE.
*/ */
#ifdef HAVE_CONFIG_H
#include <config.h>
RCSID("$Id$");
#endif
#include <sys/param.h> #include <sys/param.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/time.h> #include <sys/time.h>
@@ -352,9 +357,9 @@ syserr: run_err("%s: %s", name, strerror(errno));
if (response() < 0) if (response() < 0)
goto next; goto next;
} }
#define MODEMASK (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO) #define MODEMASK (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)
(void)snprintf(buf, sizeof(buf), "C%04o %qd %s\n", (void)snprintf(buf, sizeof(buf), "C%04o %lu %s\n",
stb.st_mode & MODEMASK, stb.st_size, last); stb.st_mode & MODEMASK, (unsigned long)stb.st_size, last);
(void)write(remout, buf, strlen(buf)); (void)write(remout, buf, strlen(buf));
if (response() < 0) if (response() < 0)
goto next; goto next;