~ubuntu-branches/ubuntu/utopic/nordugrid-arc/utopic

« back to all changes in this revision

Viewing changes to src/services/gridftpd/fileroot_config.cpp

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2014-05-01 20:51:02 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140501205102-icy9t3348uxobyx7
Tags: 4.1.0-1
* 4.1.0 Release
* Call dh_autoreconf to support ppc64le (Closes: #744639)

Show diffs side-by-side

added added

removed removed

Lines of Context:
209
209
      if(decision == AAA_POSITIVE_MATCH) user.user.add_group(group_name);
210
210
    }
211
211
    else if(command == "vo") {
212
 
      if(gridftpd::config_vo(user.user,command,rest) != 0) {
 
212
      if(gridftpd::config_vo(user.user,command,rest,&logger) != 0) {
213
213
        logger.msg(Arc::ERROR, "couldn't process VO configuration");
214
214
        return 1;
215
215
      };
328
328
    if(!right_group) {
329
329
      if(!cf.SectionNew()) continue;
330
330
    };
331
 
    int r = config_vo(user.user,cf,command,rest);
 
331
    int r = config_vo(user.user,cf,command,rest,&logger);
332
332
    if(r==0) continue;
333
333
    if(cf.SectionNew()) {
334
334
      if(right_group) switch(st) {