Lines Matching defs:authFile
76 char * authFile; /* file to store authorization in */
482 SaveServerAuthorization(const char *authFile, Xauth *auth)
488 (void) remove(authFile);
489 auth_fd = open(authFile, O_WRONLY | O_CREAT | O_EXCL, 0600);
491 perror(authFile);
497 perror(authFile);
499 (void) remove(authFile);
531 if (SaveServerAuthorization(d->authFile, auth)) {
658 d.authFile = argv[1];
660 if ((d.name = strrchr(d.authFile, ':')) == NULL) {
663 d.authFile);