[BACK]Return to dgamelaunch.c CVS log [TXT][DIR] Up to [contributed] / dgamelaunch-openbsd

Diff for /dgamelaunch-openbsd/dgamelaunch.c between version 1.5 and 1.9

version 1.5, 2021/03/25 21:01:26 version 1.9, 2021/04/02 12:19:39
Line 2163  readfile (int nolock)
Line 2163  readfile (int nolock)
       b = n;        b = n;
   
       /* pw field */        /* pw field */
         /* OpenBSD's implementation stores the password in hashed form.
          * crypt_checkpass takes care of validating the hashing so we
          * don't have to ensure the password field has a valid length */
   
       while (*b != ':')        while (*b != ':')
         {          {
           users[f_num]->password[(b - n)] = *b;            users[f_num]->password[(b - n)] = *b;
           b++;            b++;
   #if !defined(__OpenBSD__)
           if ((b - n) >= DGL_PASSWDLEN) {            if ((b - n) >= DGL_PASSWDLEN) {
               debug_write("passwd field too long");                debug_write("passwd field too long");
             graceful_exit (102);              graceful_exit (102);
           }            }
   #endif
         }          }
   
       /* advance to next field */        /* advance to next field */
Line 2886  main (int argc, char** argv)
Line 2892  main (int argc, char** argv)
           graceful_exit (6);            graceful_exit (6);
         }          }
   
 #ifdef __OpenBSD__  #if defined(__OpenBSD__)
       if ( pledge("stdio rpath wpath cpath fattr flock "        if ( pledge("stdio rpath wpath cpath fattr flock "
           "tty proc exec ps", NULL )==-1 )            "tty proc exec ps", NULL )==-1 )
         {          {

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.9

CVSweb