File: getfsdev.c

package info (click to toggle)
rsync 3.1.2-1%2Bdeb9u2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 3,824 kB
  • sloc: ansic: 40,130; sh: 5,507; perl: 1,932; makefile: 339; python: 83
file content (23 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "rsync.h"

 int main(int argc, char *argv[])
{
	STRUCT_STAT st;
	int ret;

	while (--argc > 0) {
#ifdef USE_STAT64_FUNCS
		ret = stat64(*++argv, &st);
#else
		ret = stat(*++argv, &st);
#endif
		if (ret < 0) {
			fprintf(stderr, "Unable to stat `%s'\n", *argv);
			exit(1);
		}
		printf("%ld/%ld\n", (long)major(st.st_dev),
				    (long)minor(st.st_dev));
	}

	return 0;
}