Commit e222b5e4 e222b5e43c5d4eae1edce975369ee592f3456339 by Sergey Poznyakoff

Fixed typo in getpwnam_virtual: returned NULL instead of pw

1 parent 5d583a47
...@@ -398,7 +398,7 @@ getpwnam_virtual (const char *u) ...@@ -398,7 +398,7 @@ getpwnam_virtual (const char *u)
398 } 398 }
399 } 399 }
400 400
401 return NULL; 401 return pw;
402 } 402 }
403 403
404 #endif 404 #endif
......