]> git.sur5r.net Git - bacula/bacula/commitdiff
Small indent changes
authorMarco van Wieringen <mvw@planets.elm.net>
Sun, 21 Feb 2010 10:39:37 +0000 (11:39 +0100)
committerMarco van Wieringen <mvw@planets.elm.net>
Sun, 21 Feb 2010 10:40:22 +0000 (11:40 +0100)
bacula/src/cats/ingres.c
bacula/src/cats/myingres.c
bacula/src/cats/myingres.sc

index 4adb7b6c82d45b6f4676c3abd6cb53294d2129ca..a7834d501cb8548498c9f10c639831a932f04e0b 100755 (executable)
@@ -1,4 +1,3 @@
-
 /*
    Bacula® - The Network Backup Solution
 
index bb89a10e0eb840b22f40b8cc7db3e3a2e65838d3..c72f72a58d72af110155ea5ae0da3a54b877ac07 100644 (file)
@@ -35,7 +35,7 @@ short INGgetCols(const char *stmt)
     IIsqPrepare(0,(char *)"s1",(char *)0,0,stmtd);
   }
 /* # line 39 "myingres.sc" */  /* host code */
-   if (INGcheck() < 0 ) {
+   if (INGcheck() < 0) {
       free(stmtd);
       free(sqlda);
       return -1;
@@ -46,7 +46,7 @@ short INGgetCols(const char *stmt)
     IIsqDescribe(0,(char *)"s1",sqlda,0);
   }
 /* # line 45 "myingres.sc" */  /* host code */
-   if (INGcheck() < 0 ) {
+   if (INGcheck() < 0) {
       free(stmtd);
       free(sqlda);
       return -1;
@@ -160,7 +160,7 @@ void INGfreeINGresult(INGresult *ing_res)
    /*
     * Free all rows and fields, then res, not descriptor!
     */
-   if (ing_res != NULL ) {
+   if (ing_res != NULL) {
       /*
        * Use of rows is a nasty workaround til I find the reason,
        * why aggregates like max() don't work
@@ -249,7 +249,7 @@ void INGfreeRowSpace(ING_ROW *row, IISQLDA *sqlda)
    if (row == NULL || sqlda == NULL) {
       return;
    }
-   for (i = 0; i < sqlda->sqld; ++i ) {
+   for (i = 0; i < sqlda->sqld; ++i) {
       free(row->sqlvar[i].sqldata);
       free(row->sqlvar[i].sqlind);
    }
@@ -364,7 +364,7 @@ int INGnfields(const INGresult *res)
 }
 char *INGfname(const INGresult *res, int column_number)
 {
-   if ( (column_number > res->num_fields) || (column_number < 0) ) {
+   if ((column_number > res->num_fields) || (column_number < 0)) {
       return NULL;
    } else {
       return res->fields[column_number].name;
@@ -453,7 +453,7 @@ INGconn *INGconnectDB(char *dbname, char *user, char *passwd)
    strcpy(ingdbname,dbname);
    if (user != NULL) {
       strcpy(ingdbuser,user);
-      if ( passwd != NULL) {
+      if (passwd != NULL) {
          strcpy(ingdbpasw,passwd);
       } else {
          strcpy(ingdbpasw, "");
index 2a61fe20c0eb7a5a851f6279789d0d7011323a52..250520907742126075a8dc05989a773c1c01de3e 100644 (file)
@@ -36,13 +36,13 @@ short INGgetCols(const char *stmt)
    strncpy(stmtd,stmt,strlen(stmt)+1);
      
    EXEC SQL PREPARE s1 from :stmtd;
-   if (INGcheck() < 0 ) {
+   if (INGcheck() < 0) {
       free(stmtd);
       free(sqlda);
       return -1;
    }
    EXEC SQL DESCRIBE s1 into :sqlda;
-   if (INGcheck() < 0 ) {
+   if (INGcheck() < 0) {
       free(stmtd);
       free(sqlda);
       return -1;
@@ -172,7 +172,7 @@ void INGfreeINGresult(INGresult *ing_res)
    /*
     * Free all rows and fields, then res, not descriptor!
     */
-   if (ing_res != NULL ) {
+   if (ing_res != NULL) {
       /*
        * Use of rows is a nasty workaround til I find the reason,
        * why aggregates like max() don't work
@@ -271,7 +271,7 @@ void INGfreeRowSpace(ING_ROW *row, IISQLDA *sqlda)
       return;
    }
 
-   for (i = 0; i < sqlda->sqld; ++i ) {
+   for (i = 0; i < sqlda->sqld; ++i) {
       free(row->sqlvar[i].sqldata);
       free(row->sqlvar[i].sqlind);
    }
@@ -384,7 +384,7 @@ int INGnfields(const INGresult *res)
 
 char *INGfname(const INGresult *res, int column_number)
 {
-   if ( (column_number > res->num_fields) || (column_number < 0) ) {
+   if ((column_number > res->num_fields) || (column_number < 0)) {
       return NULL;
    } else {
       return res->fields[column_number].name;
@@ -474,7 +474,7 @@ INGconn *INGconnectDB(char *dbname, char *user, char *passwd)
    
    if (user != NULL) {
       strcpy(ingdbuser,user);
-      if ( passwd != NULL) {
+      if (passwd != NULL) {
          strcpy(ingdbpasw,passwd);
       } else {
          strcpy(ingdbpasw, "");