[BACK]Return to pw_yp.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / chpass

Diff for /src/usr.bin/chpass/Attic/pw_yp.c between version 1.3 and 1.4

version 1.3, 1996/08/30 13:09:41 version 1.4, 1996/08/31 01:55:33
Line 145 
Line 145 
             xdr_yppasswd, &yppasswd, xdr_int, &status, tv);              xdr_yppasswd, &yppasswd, xdr_int, &status, tv);
         if (r) {          if (r) {
                 fprintf(stderr, "%s: rpc to yppasswdd failed. %d\n", progname, r);                  fprintf(stderr, "%s: rpc to yppasswdd failed. %d\n", progname, r);
                   clnt_destroy(client);
                 return(0);                  return(0);
         } else if (status) {          } else if (status) {
                 printf("Couldn't change YP password information.\n");                  printf("Couldn't change YP password information.\n");
                   clnt_destroy(client);
                 return(0);                  return(0);
         }          }
         printf("The YP password information has been changed on %s, the master YP passwd server.\n", master);          printf("The YP password information has been changed on %s, the master YP passwd server.\n", master);
   
           clnt_destroy(client);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4