/*
- * $Id: acl.cc,v 1.53 1996/10/24 20:56:33 wessels Exp $
+ * $Id: acl.cc,v 1.54 1996/10/24 23:31:11 wessels Exp $
*
* DEBUG: section 28 Access Control
* AUTHOR: Duane Wessels
while (list) {
AclMatchedName = list->acl->name;
debug(28, 3, "aclMatchAclList: checking %s%s\n",
- list->op ? "" : "!", list->acl->name);
+ list->op ? null_string : "!", list->acl->name);
if (aclMatchAcl(list->acl, checklist) != list->op) {
debug(28, 3, "aclMatchAclList: returning 0\n");
return 0;
/*
- * $Id: ftp.cc,v 1.67 1996/10/15 18:06:23 wessels Exp $
+ * $Id: ftp.cc,v 1.68 1996/10/24 23:31:13 wessels Exp $
*
* DEBUG: section 9 File Transfer Protocol (FTP)
* AUTHOR: Harvest Derived
*s = 0;
strcpy(password, s + 1);
} else {
- strcpy(password, "");
+ strcpy(password, null_string
}
if (!*user && !*password) {
/*
- * $Id: stat.cc,v 1.91 1996/10/24 06:11:57 wessels Exp $
+ * $Id: stat.cc,v 1.92 1996/10/24 23:31:17 wessels Exp $
*
* DEBUG: section 18 Cache Manager Statistics
* AUTHOR: Harvest Derived
break;
case FD_FILE:
storeAppendPrintf(sentry, "%31s %s}\n",
- "",
+ null_string,
(s = diskFileName(i)) ? s : "-");
break;
case FD_PIPE:
- storeAppendPrintf(sentry, "%31s %s}\n", "", fd_note(i, NULL));
+ storeAppendPrintf(sentry, "%31s %s}\n", null_string, fd_note(i, NULL));
break;
case FD_LOG:
- storeAppendPrintf(sentry, "%31s %s}\n", "", fd_note(i, NULL));
+ storeAppendPrintf(sentry, "%31s %s}\n", null_string, fd_note(i, NULL));
break;
case FD_UNKNOWN:
default:
- storeAppendPrintf(sentry, "%31s %s}\n", "", fd_note(i, NULL));
+ storeAppendPrintf(sentry, "%31s %s}\n", null_string, fd_note(i, NULL));
break;
}
}
method,
url,
ident,
- hier_timeout ? "TIMEOUT_" : "",
+ hier_timeout ? "TIMEOUT_" : null_string,
hier_strings[hier_code],
hier_host);
#if LOG_FULL_HEADERS
/*
- * $Id: url.cc,v 1.35 1996/10/09 15:34:41 wessels Exp $
+ * $Id: url.cc,v 1.36 1996/10/24 23:31:19 wessels Exp $
*
* DEBUG: section 23 URL Parsing
* AUTHOR: Duane Wessels
sprintf(buf, "%s://%s%s%s%s%s",
ProtocolStr[request->protocol],
request->login,
- *request->login ? "@" : "",
+ *request->login ? "@" : null_string,
request->host,
portbuf,
request->urlpath);