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)
}
}
return NULL;
return pw;
}
#endif
......