summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-12-28 22:33:53 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2001-12-28 22:33:53 +0000
commit367467cffe8363cd2d669693a94396794da8a646 (patch)
treee54d83d9f4485254cff9454203dadc5c0ac91bd4 /file_io
parent5801c86e9b722f44dd867954f9de505f533ae440 (diff)
downloadlibapr-367467cffe8363cd2d669693a94396794da8a646.tar.gz
Tabs are evil, 4width doubly so
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62674 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/mktemp.c91
1 files changed, 46 insertions, 45 deletions
diff --git a/file_io/unix/mktemp.c b/file_io/unix/mktemp.c
index df83ece99..c5cb10117 100644
--- a/file_io/unix/mktemp.c
+++ b/file_io/unix/mktemp.c
@@ -53,7 +53,7 @@
*/
/*
* Copyright (c) 1987, 1993
- * The Regents of the University of California. All rights reserved.
+ * The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -65,8 +65,8 @@
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
+ * This product includes software developed by the University of
+ * California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
@@ -122,35 +122,35 @@ static apr_uint32_t randseed=0;
static int gettemp(char *path, apr_file_t **doopen, apr_pool_t *p)
{
- register char *start, *trv, *suffp;
- char *pad;
- apr_finfo_t sbuf;
+ register char *start, *trv, *suffp;
+ char *pad;
+ apr_finfo_t sbuf;
apr_status_t rv;
- apr_uint32_t randnum;
-
- if (randseed==0) {
- randseed = time(NULL);
- seedrandom(randseed);
- }
-
- for (trv = path; *trv; ++trv)
- ;
- suffp = trv;
- --trv;
- if (trv < path) {
- return APR_EINVAL;
- }
-
- /* Fill space with random characters */
- while (*trv == 'X') {
- randnum = arc4random() % (sizeof(padchar) - 1);
- *trv-- = padchar[randnum];
- }
- start = trv + 1;
-
- /*
- * check the target directory.
- */
+ apr_uint32_t randnum;
+
+ if (randseed==0) {
+ randseed = time(NULL);
+ seedrandom(randseed);
+ }
+
+ for (trv = path; *trv; ++trv)
+ ;
+ suffp = trv;
+ --trv;
+ if (trv < path) {
+ return APR_EINVAL;
+ }
+
+ /* Fill space with random characters */
+ while (*trv == 'X') {
+ randnum = arc4random() % (sizeof(padchar) - 1);
+ *trv-- = padchar[randnum];
+ }
+ start = trv + 1;
+
+ /*
+ * check the target directory.
+ */
for (;; --trv) {
if (trv <= path)
break;
@@ -167,7 +167,7 @@ static int gettemp(char *path, apr_file_t **doopen, apr_pool_t *p)
}
}
- for (;;) {
+ for (;;) {
if ((rv = apr_file_open(doopen, path, APR_CREATE|APR_EXCL|APR_READ|
APR_WRITE|APR_DELONCLOSE,
APR_UREAD | APR_UWRITE, p)) == APR_SUCCESS)
@@ -175,20 +175,21 @@ static int gettemp(char *path, apr_file_t **doopen, apr_pool_t *p)
if (rv != APR_EEXIST)
return rv;
- /* If we have a collision, cycle through the space of filenames */
- for (trv = start;;) {
- if (*trv == '\0' || trv == suffp)
+ /* If we have a collision, cycle through the space of filenames */
+ for (trv = start;;) {
+ if (*trv == '\0' || trv == suffp)
return APR_EINVAL; /* XXX: is this the correct return code? */
- pad = strchr((char *)padchar, *trv);
- if (pad == NULL || !*++pad)
- *trv++ = padchar[0];
- else {
- *trv++ = *pad;
- break;
- }
- }
- }
- /*NOTREACHED*/
+ pad = strchr((char *)padchar, *trv);
+ if (pad == NULL || !*++pad) {
+ *trv++ = padchar[0];
+ }
+ else {
+ *trv++ = *pad;
+ break;
+ }
+ }
+ }
+ /*NOTREACHED*/
}
#else