]> arthur.barton.de Git - netatalk.git/commitdiff
Untabify and reindent
authorFrank Lahm <franklahm@googlemail.com>
Mon, 20 Sep 2010 09:38:27 +0000 (11:38 +0200)
committerFrank Lahm <franklahm@googlemail.com>
Mon, 20 Sep 2010 09:38:27 +0000 (11:38 +0200)
libatalk/acl/uuid.c

index 72c70c6f4124ef27d1df1b47db165fb850ef3b5a..4ac7b65f32b8762e8663b52f7e7d56a3a3c52ca0 100644 (file)
@@ -1,17 +1,17 @@
 /*
-   $Id: uuid.c,v 1.3 2009-11-27 16:33:49 franklahm Exp $
-   Copyright (c) 2008,2009 Frank Lahm <franklahm@gmail.com>
-
-   This program is free software; you can redistribute it and/or modify
-   it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
-   (at your option) any later version.
-   This program is distributed in the hope that it will be useful,
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-   GNU General Public License for more details.
- */
+  $Id: uuid.c,v 1.3 2009-11-27 16:33:49 franklahm Exp $
+  Copyright (c) 2008,2009 Frank Lahm <franklahm@gmail.com>
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+*/
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -41,25 +41,25 @@ void uuid_string2bin( const char *uuidstring, uuidp_t uuid) {
     unsigned char c, val = 0;
 
     while (*uuidstring) {
-       c = *uuidstring;
-       if (c == '-') {
-           uuidstring++;
-           continue;
-       }
-       else if (c <= '9')              /* 0-9 */
-           c -= '0';
-       else if (c <= 'F')      /* A-F */
-           c -= 'A' - 10;
-       else if (c <= 'f')      /* a-f */
-           c-= 'a' - 10;
-
-       if (nibble)
-           val = c * 16;
-       else
-           uuid[i++] = val + c;
-
-       nibble ^= 1;
-       uuidstring++;
+        c = *uuidstring;
+        if (c == '-') {
+            uuidstring++;
+            continue;
+        }
+        else if (c <= '9')      /* 0-9 */
+            c -= '0';
+        else if (c <= 'F')  /* A-F */
+            c -= 'A' - 10;
+        else if (c <= 'f')      /* a-f */
+            c-= 'a' - 10;
+
+        if (nibble)
+            val = c * 16;
+        else
+            uuid[i++] = val + c;
+
+        nibble ^= 1;
+        uuidstring++;
     }
 
 }
@@ -79,23 +79,23 @@ int uuid_bin2string( uuidp_t uuid, char **uuidstring) {
     s = *uuidstring;
 
     while (i < UUID_STRINGSIZE) {
-       c = *uuid;
-       if (nibble)
-           c = c >> 4;
-       else {
-           c &= 0x0f;
-           uuid++;
-       }
-       s[i] = ascii[c];
-       nibble ^= 1;
-       i++;
-       if (i==8 || i==13 || i==18 || i==23)
-           s[i++] = '-';
+        c = *uuid;
+        if (nibble)
+            c = c >> 4;
+        else {
+            c &= 0x0f;
+            uuid++;
+        }
+        s[i] = ascii[c];
+        nibble ^= 1;
+        i++;
+        if (i==8 || i==13 || i==18 || i==23)
+            s[i++] = '-';
     }
     return 0;
 }
 
-/******************************************************** 
+/********************************************************
  * Interface
  ********************************************************/
 
@@ -104,18 +104,18 @@ int getuuidfromname( const char *name, uuidtype_t type, uuidp_t uuid) {
     char *uuid_string = NULL;
 
     ret = search_cachebyname( name, type, uuid);
-    if (ret == 0) {            /* found in cache */
-       uuid_bin2string( uuid, &uuid_string);
-       LOG(log_debug, logtype_afpd, "getuuidfromname{cache}: name: %s, type: %s -> UUID: %s",name, uuidtype[type], uuid_string);
+    if (ret == 0) {     /* found in cache */
+        uuid_bin2string( uuid, &uuid_string);
+        LOG(log_debug, logtype_afpd, "getuuidfromname{cache}: name: %s, type: %s -> UUID: %s",name, uuidtype[type], uuid_string);
     } else  {                   /* if not found in cache */
-       ret = ldap_getuuidfromname( name, type, &uuid_string);
-       if (ret != 0) {
-           LOG(log_error, logtype_afpd, "getuuidfromname: no result from ldap_getuuidfromname");
-           goto cleanup;
-       }
-       uuid_string2bin( uuid_string, uuid);
-       add_cachebyname( name, uuid, type, 0);
-       LOG(log_debug, logtype_afpd, "getuuidfromname{LDAP}: name: %s, type: %s -> UUID: %s",name, uuidtype[type], uuid_string);
+        ret = ldap_getuuidfromname( name, type, &uuid_string);
+        if (ret != 0) {
+            LOG(log_error, logtype_afpd, "getuuidfromname: no result from ldap_getuuidfromname");
+            goto cleanup;
+        }
+        uuid_string2bin( uuid_string, uuid);
+        add_cachebyname( name, uuid, type, 0);
+        LOG(log_debug, logtype_afpd, "getuuidfromname{LDAP}: name: %s, type: %s -> UUID: %s",name, uuidtype[type], uuid_string);
     }
 
 cleanup:
@@ -126,22 +126,22 @@ cleanup:
 int getnamefromuuid( uuidp_t uuidp, char **name, uuidtype_t *type) {
     int ret;
     char *uuid_string = NULL;
-    
+
     ret = search_cachebyuuid( uuidp, name, type);
-    if (ret == 0) {            /* found in cache */
+    if (ret == 0) {     /* found in cache */
 #ifdef DEBUG
-       uuid_bin2string( uuidp, &uuid_string);
-       LOG(log_debug9, logtype_afpd, "getnamefromuuid{cache}: UUID: %s -> name: %s, type:%s", uuid_string, *name, uuidtype[*type]);
+        uuid_bin2string( uuidp, &uuid_string);
+        LOG(log_debug9, logtype_afpd, "getnamefromuuid{cache}: UUID: %s -> name: %s, type:%s", uuid_string, *name, uuidtype[*type]);
 #endif
     } else  {                   /* if not found in cache */
-       uuid_bin2string( uuidp, &uuid_string);
-       ret = ldap_getnamefromuuid( uuid_string, name, type);
-       if (ret != 0) {
-           LOG(log_error, logtype_afpd, "getnamefromuuid: no result from ldap_getuuidfromname");
-           goto cleanup;
-       }
-       add_cachebyuuid( uuidp, *name, *type, 0);
-       LOG(log_debug, logtype_afpd, "getnamefromuuid{LDAP}: UUID: %s -> name: %s, type:%s",uuid_string, *name, uuidtype[*type]);
+        uuid_bin2string( uuidp, &uuid_string);
+        ret = ldap_getnamefromuuid( uuid_string, name, type);
+        if (ret != 0) {
+            LOG(log_error, logtype_afpd, "getnamefromuuid: no result from ldap_getnamefromuuid");
+            goto cleanup;
+        }
+        add_cachebyuuid( uuidp, *name, *type, 0);
+        LOG(log_debug, logtype_afpd, "getnamefromuuid{LDAP}: UUID: %s -> name: %s, type:%s",uuid_string, *name, uuidtype[*type]);
     }
 
 cleanup: