Some coding convention pedantism.
[ira/wip.git] / source / nsswitch / libwbclient / wbc_pwd.c
index 5f7437b18896c22674f6c8f9da61d7f95d6df888..b24e198bc5cdaba7d7c70d3c51db0dda28105eeb 100644 (file)
@@ -228,14 +228,14 @@ wbcErr wbcGetgrnam(const char *name, struct group **grp)
                                        &response);
        BAIL_ON_WBC_ERROR(wbc_status);
 
-       *grp = copy_group_entry(&response.data.gr, 
+       *grp = copy_group_entry(&response.data.gr,
                                (char*)response.extra_data.data);
        BAIL_ON_PTR_ERROR(*grp, wbc_status);
 
  done:
        if (response.extra_data.data)
                free(response.extra_data.data);
-       
+
        return wbc_status;
 }
 
@@ -271,7 +271,7 @@ wbcErr wbcGetgrgid(gid_t gid, struct group **grp)
                                        &response);
        BAIL_ON_WBC_ERROR(wbc_status);
 
-       *grp = copy_group_entry(&response.data.gr, 
+       *grp = copy_group_entry(&response.data.gr,
                                (char*)response.extra_data.data);
        BAIL_ON_PTR_ERROR(*grp, wbc_status);