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

Diff for /src/usr.bin/ssh/misc.c between version 1.105 and 1.106

version 1.105, 2016/07/15 00:24:30 version 1.106, 2016/10/23 22:04:05
Line 1179 
Line 1179 
         return 1;          return 1;
 }  }
   
   /* returns 1 if bind to specified port by specified user is permitted */
   int
   bind_permitted(int port, uid_t uid)
   {
           if (port < IPPORT_RESERVED && uid != 0)
                   return 0;
           return 1;
   }

Legend:
Removed from v.1.105  
changed lines
  Added in v.1.106