python socket_util: Use correct fatal_signal function on error path.
authorBen Pfaff <blp@nicira.com>
Wed, 7 Mar 2012 23:41:30 +0000 (15:41 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 8 Mar 2012 00:33:14 +0000 (16:33 -0800)
commitdaad9316430795b0a9ee5d4ec89b9538101424ed
treec377547d0828b23753d6bbabc1cd152214e17fb6
parenteaae5809c0115635b600043d35b4233572228e15
python socket_util: Use correct fatal_signal function on error path.

The correct function to call here is "remove_file_to_unlink".  That is,
since the file has already been unlinked there is no need to keep it on
the list of files to unlink.

However, "unlink_file_now" simplifies the code, so we might as well use
that.

Signed-off-by: Ben Pfaff <blp@nicira.com>
python/ovs/socket_util.py