s3:smbd: check the share level access mask in smbd_calculate_access_mask()
[Samba/gebeck_regimport.git] / source3 / torture / t_strcmp.c
blob5be26cdc79f61d2a5683b25508be67bb75955c34
1 /*
2 * Copyright (C) 2003 by Martin Pool
4 * Test harness for strcasecmp_m
5 */
7 #include "includes.h"
9 int main(int argc, char *argv[])
11 int i, ret;
12 int iters = 1;
14 /* Needed to initialize character set */
15 lp_load("/dev/null", True, False, False, True);
17 if (argc < 3) {
18 fprintf(stderr, "usage: %s STRING1 STRING2 [ITERS]\n"
19 "Compares two strings, prints the results of strcasecmp_m\n",
20 argv[0]);
21 return 2;
23 if (argc >= 4)
24 iters = atoi(argv[3]);
26 for (i = 0; i < iters; i++)
27 ret = strcasecmp_m(argv[1], argv[2]);
29 printf("%d\n", ret);
31 return 0;