*** empty log message ***
[citadel.git] / citadel / serv_bio.c
index 62d313f4270b2e4ea7b630296cc9e0ae8f9677ef..186bb4bfabebbf47889f69eb73eb1ac5d7f9ce34 100644 (file)
@@ -60,7 +60,7 @@ void cmd_ebio(char *cmdbuf) {
                return;
        }
 
-       snprintf(buf, sizeof buf, "./bio/%ld",CC->usersupp.usernum);
+       snprintf(buf, sizeof buf, "./bio/%ld",CC->user.usernum);
        fp = fopen(buf,"w");
        if (fp == NULL) {
                cprintf("%d Cannot create file\n",ERROR);
@@ -78,7 +78,7 @@ void cmd_ebio(char *cmdbuf) {
  */
 void cmd_rbio(char *cmdbuf)
 {
-       struct usersupp ruser;
+       struct user ruser;
        char buf[SIZ];
        FILE *fp;
 
@@ -108,7 +108,7 @@ void cmd_rbio(char *cmdbuf)
 void cmd_lbio(char *cmdbuf) {
        char buf[SIZ];
        FILE *ls;
-       struct usersupp usbuf;
+       struct user usbuf;
 
        ls=popen("cd ./bio; ls","r");
        if (ls==NULL) {